JsMap<K extends Object, V> class

Implementers
Available extensions
Annotations
  • @JS('Map')
  • @staticInterop

Constructors

JsMap([Iterable<Iterable> initial])
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
keys JsIterable<V>

Available on JsMap<K, V>, provided by the DartMap extension

no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
values JsIterable<V>

Available on JsMap<K, V>, provided by the DartMap extension

no setter

Methods

asString() String

Available on JsMap<K, V>, provided by the DartMap extension

clear() → void

Available on JsMap<K, V>, provided by the DartMap extension

containsKey(K key) bool

Available on JsMap<K, V>, provided by the DartMap extension

forEach(void fn(K, V?, JsMap<K, V>)) → void

Available on JsMap<K, V>, provided by the DartMap extension

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
remove(K key) bool

Available on JsMap<K, V>, provided by the DartMap extension

removeAll(Iterable<K> keys) → void

Available on JsMap<K, V>, provided by the DartMap extension

toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](K key) → V?

Available on JsMap<K, V>, provided by the DartMap extension

operator []=(K key, V? value) → void

Available on JsMap<K, V>, provided by the DartMap extension