LinkedHashMap.identity constructor - LinkedHashMap - dart:collection library (original) (raw)
LinkedHashMap<K, V>.identity()
Creates an insertion-ordered identity-based map.
Effectively shorthand for:
LinkedHashMap<K, V>(equals: identical,
hashCode: identityHashCode)
Implementation
external factory LinkedHashMap.identity();