map<K2, V2> method
-
MapEntry<
K2, V2> transform(- K key,
- V value
override
Returns a new map where all entries of this map are transformed by the given convert
function.
Implementation
Map<K2, V2> map<K2, V2>(MapEntry<K2, V2> transform(K key, V value)) { var result = <K2, V2>{}; for (var key in this.keys) { var entry = transform(key, this[key] as V); result[entry.key] = entry.value; } return result; }
© 2012 the Dart project authors
Licensed under the Creative Commons Attribution-ShareAlike License v4.0.
https://api.dart.dev/stable/2.13.0/dart-collection/MapMixin/map.html