findPropertyAsStringTrimLC method
Finds a property with keys
. Returns the value in lower case and trimmed.
def
The default value if keys
not found.
Implementation
String? findPropertyAsStringTrimLC(List<String> keys, [String? def]) {
var val = findPropertyAsStringTrim(keys, def);
return val?.toLowerCase();
}