CaseInsensitiveMap<V>.fromEntries constructor

CaseInsensitiveMap<V>.fromEntries(
  1. Iterable<MapEntry<String, V>> entries
)

Creates a case-insensitive map that is initialized with the key/value pairs of entries.

Implementation

CaseInsensitiveMap.fromEntries(Iterable<MapEntry<String, V>> entries)
    : super.fromEntries(entries, _canonicalizer);