Dart API Referencedart:coreHashMap<K, V>

HashMap<K extends Hashable, V> Interface

Hash map version of the Map interface. A HashMap does not provide any guarantees on the order of keys and values in getKeys and getValues.

Default class

HashMapImplementation<K, V>

Extends

Map<K, V>

Subinterfaces

LinkedHashMap<K, V>

Implemented by

HashMapImplementation<K, V>

Constructors

Code new HashMap() #

Creates a map with the default implementation.

HashMap();

Code new HashMap.from(Map<K, V> other) #

Creates a HashMap that contains all key value pairs of other.

HashMap.from(Map<K, V> other);