map<K2, V2> method
Null safety
- MapEntry<
K2, V2> convert(- dynamic,
- dynamic
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> Function(dynamic, dynamic) convert) =>
_value.map(convert);