mapEntries<R> method

Iterable<R> mapEntries<R>(
  1. R transform(
    1. MapEntry<K, V> entry
    )
)

Returns a Iterable containing the results of applying the given transform function to each entry in the original Map.

Implementation

Iterable<R> mapEntries<R>(R Function(MapEntry<K, V> entry) transform) =>
    entries.map(transform);