findKeyName<K, V> function
Finds in map
a key that has one of keys
.
ignoreCase
If true
ignores the case of the keys.
Implementation
K? findKeyName<K, V>(Map? map, List<K>? keys, [bool ignoreCase = false]) {
var entry = findKeyEntry(map, keys, ignoreCase);
return entry?.key;
}