getPropertyAsBoolList method
Gets a property with key
as List<bool>.
def
The default value if key
not found.
Implementation
List<bool>? getPropertyAsBoolList(String key, [List<bool>? def]) =>
getPropertyAs(key, (v) => parseBoolsFromInlineList(v, ',', def), def);