findPropertyAsBoolList method
Finds a property with keys
as List<bool>.
def
The default value if keys
not found.
Implementation
List<bool>? findPropertyAsBoolList(List<String> keys, [List<bool>? def]) =>
findPropertyAs(keys, (v) => parseBoolsFromInlineList(v, ',', def), def);