Dart SDK
dart:core
Map
forEach
method
forEach
Map
Properties
keys
values
length
isEmpty
isNotEmpty
Constructors
Map
from
unmodifiable
identity
fromIterable
fromIterables
Operators
operator []
operator []=
Methods
containsValue
containsKey
putIfAbsent
addAll
remove
clear
forEach
void
forEach
(
void
f
(
K
key
,
V
value
)
)
Applies f to each key-value pair of the map.
Calling
f
must not add or remove keys from the map.