Flutter
collection
DelegatingMap
<
K
,
V
>
clear method
clear
DelegatingMap class
Constructors
DelegatingMap
Properties
entries
isEmpty
isNotEmpty
keys
length
values
hashCode
runtimeType
Methods
addAll
addEntries
cast
clear
containsKey
containsValue
forEach
map
putIfAbsent
remove
removeWhere
retype
toString
update
updateAll
noSuchMethod
Operators
operator []
operator []=
operator ==
Static methods
typed
clear method
void
clear
(
)
override
Removes all pairs from the map.
After this, the map is empty.
Implementation
void clear() { _base.clear(); }