findPropertyAsBoolList method

List<bool>? findPropertyAsBoolList(
  1. List<String> keys, [
  2. List<bool>? def
])

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