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