LinkedHashMap<K, V>.fromEntries constructor
- @Since("2.1")
Creates a LinkedHashMap containing the entries of entries
.
Returns a new LinkedHashMap<K, V>
where all entries of entries
have been added in iteration order.
If multiple entries
have the same key,
later occurrences overwrite the earlier ones.
Example:
final numbers = [11, 12, 13, 14];
final map = LinkedHashMap.fromEntries(numbers.map((i) => MapEntry(i, i * i)));
print(map); // {11: 121, 12: 144, 13: 169, 14: 196}
Implementation
@Since("2.1")
factory LinkedHashMap.fromEntries(Iterable<MapEntry<K, V>> entries) =>
LinkedHashMap<K, V>()..addEntries(entries);