Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

dart zip two lists

// If you want an even shorter solution using the quiver package's zip function, you can do the following:
final c = zip([a, b]).map((item) => Foo(item[0], item[1])).toList();
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #dart #zip #lists
ADD COMMENT
Topic
Name
6+4 =