CaseInsensitiveMap<V>.from constructor

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

Implementation

CaseInsensitiveMap.from(Map<String, V> other)
    : super.from(other, (key) => key.toLowerCase());