findPropertyAsString method

String? findPropertyAsString(
  1. List<String> keys, [
  2. String? def
])

Finds a property with keys. Returns the value as String.

def The default value if keys not found.

Implementation

String? findPropertyAsString(List<String> keys, [String? def]) =>
    findPropertyAs(keys, (e) => parseString(e), def);