getPropertyAsBoolList method

List<bool>? getPropertyAsBoolList(
  1. String key, [
  2. List<bool>? def
])

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