Skip to content

Instantly share code, notes, and snippets.

@koral--
Created June 28, 2022 09:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save koral--/fee0b25ce764a629fc34ea4735f0b8a5 to your computer and use it in GitHub Desktop.
Save koral--/fee0b25ce764a629fc34ea4735f0b8a5 to your computer and use it in GitHub Desktop.
List flattening
void main() {
var labels = [1,2,6,7];
print(labels.map((l)=> ["x", l.toString()]).expand((t)=>t).toList());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment