video_player
dart:collection
MapView
property isEmpty
isEmpty
class MapView
Constructors
MapView
Properties
isEmpty
isNotEmpty
keys
length
values
hashCode
runtimeType
Methods
addAll
clear
containsKey
containsValue
forEach
putIfAbsent
remove
toString
noSuchMethod
Operators
operator []
operator []=
operator ==
bool
isEmpty
Returns true if there is no key-value pair in the map.
Source
bool get isEmpty => _map.isEmpty;
property isEmpty