We can convert Dart List to Map in another way: forEach() method . var map2 = {}; list. forEach((customer) => map2[customer.name] = customer.
Read moreWhat is list generate in Dart?
List<E>. generate constructor Null safety Generates a list of values . Creates a list with length positions and fills it with values created by calling generator for each index in the range 0 .. length – 1 in increasing order.
Read more