CaseInsensitiveMap<V>.from constructor

CaseInsensitiveMap<V>.from(
  1. Map<String, V> other
)

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

Implementation

CaseInsensitiveMap.from(Map<String, V> other)
    : super.from(other, _canonicalizer);