immutable_ordered_map
A dart implementation of Immutable ordered map. A port of orderedmap.
Usage
Refer to the original repo for usage. There are some breaking changes though:
- The original
OrderedMapis renamed toImmutableOrderedMapfor clarity. ImmutableOrderedMapis now a generic class with two type parameters:KandV.- The original
OrderedMap.toObjectis renamed toImmutableOrderedMap.toMap(Dart doesn't have a map-like Object type, useMap<T, V>instead).