toMapOfCanonicalKeys method

Map<String, V> toMapOfCanonicalKeys()
inherited

Creates a Map<C,V> (with the canonicalized keys). See toMap.

Implementation

Map<C, V> toMapOfCanonicalKeys() => Map<C, V>.fromEntries(
    _base.entries.map((e) => MapEntry<C, V>(e.key, e.value.value)));