getMultiKeyAsString method

String? getMultiKeyAsString(
  1. List<K> keys, {
  2. String? defaultValue,
  3. bool ignoreCase = false,
})

Gets the value of the first matching keys, parsing as num.

  • def is 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,
);