video_player
dart:collection
Maps
method clear
clear
class Maps
Constructors
Maps
Properties
hashCode
runtimeType
Methods
noSuchMethod
toString
Operators
operator ==
Static methods
clear
containsKey
containsValue
forEach
getValues
isEmpty
isNotEmpty
length
mapToString
putIfAbsent
dynamic
clear
(
Map
map
)
Source
static clear(Map map) { for (final k in map.keys.toList()) { map.remove(k); } }
method clear