map<RK, RV> method
Null safety
- @override
- MapEntry<
RK, RV> f(- K key,
- V value
Returns a new map where all entries of this map are transformed by
the given convert
function.
Implementation
@override
Map<RK, RV> map<RK, RV>(MapEntry<RK, RV> f(K key, V value)) => _values.map(f);