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