Dart
dart:html
Storage
keys property
keys
Storage class
Properties
isEmpty
isNotEmpty
keys
length
values
entries
hashCode
runtimeType
Methods
addAll
clear
containsKey
containsValue
forEach
putIfAbsent
remove
addEntries
cast
map
noSuchMethod
removeWhere
toString
update
updateAll
Operators
operator []
operator []=
operator ==
keys property
Iterable
<
String
>
keys
Implementation
Iterable<String> get keys { final keys = <String>[]; forEach((k, v) => keys.add(k)); return keys; }