menu
api_agent package
documentation
clients/http_client.dart
MapValues<K, V>
mapValues<T> method
mapValues<T> method
dark_mode
light_mode
mapValues<
T
>
method
Map
<
K
,
T
>
mapValues
<
T
>(
T
map
(
V
)
)
Implementation
Map<K, T> mapValues<T>(T Function(V) map) { return this.map((k, v) => MapEntry(k, map(v))); }
api_agent package
documentation
clients/http_client
MapValues<K, V>
mapValues<T> method
MapValues extension on
Map
<
K
,
V
>