map<K2, V2> method

Map<K2, V2> map<K2, V2>(
  1. MapEntry<K2, V2> f(
    1. K key,
    2. V value
    )
)

Implementation

Map<K2, V2> map<K2, V2>(MapEntry<K2, V2> Function(K key, V value) f) {
  RxTracking.track(this);
  return value.map(f);
}