Dart API Referencedart:coreLinkedHashMap<K, V>

LinkedHashMap<K extends Hashable, V> Interface

Hash map version of the Map interface that preserves insertion order.

Default class

LinkedHashMapImplementation<K, V>

Extends

HashMap<K, V>

Implemented by

LinkedHashMapImplementation<K, V>

Constructors

Code new LinkedHashMap() #

Creates a map with the default implementation.

LinkedHashMap();

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

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

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