Dart SDK
dart:html
Storage
property isEmpty
isEmpty
class Storage
Properties
isEmpty
isNotEmpty
keys
length
values
hashCode
runtimeType
Methods
addAll
clear
containsKey
containsValue
forEach
putIfAbsent
remove
noSuchMethod
toString
Operators
operator []
operator []=
operator ==
bool
isEmpty
Returns true if there is no key-value pair in the map.
Source
bool get isEmpty => _key(0) == null;
property isEmpty