findPropertyAsString method
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);