getMultiKeyAsString method
Gets the value of the first matching keys, parsing as num.
defis the default value if the value is invalid.
Implementation
String? getMultiKeyAsString(
List<K> keys, {
String? defaultValue,
bool ignoreCase = false,
}) => getMultiKeyParsed(
keys,
TypeParser.parseString,
defaultValue: defaultValue,
ignoreCase: ignoreCase,
);