menu
df_widgets package
documentation
_common.dart
ToMapOnIterableX<K, V>
toMap method
toMap method
dark_mode
light_mode
toMap
method
Map
<
K
,
V
>
toMap
(
)
Converts an iterable of
MapEntry
to a
Map
.
Implementation
Map<K, V> toMap() { return Map.fromEntries(this); }
df_widgets package
documentation
_common
ToMapOnIterableX<K, V>
toMap method
ToMapOnIterableX extension on
Iterable
<
MapEntry
<
K
,
V
>
>