Created
June 28, 2022 09:17
-
-
Save koral--/fee0b25ce764a629fc34ea4735f0b8a5 to your computer and use it in GitHub Desktop.
List flattening
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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