findPropertyAsBool method

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

Finds a property with keys. Returns the value as bool.

def The default value if keys not found.

Implementation

bool? findPropertyAsBool(List<String> keys, [bool? def]) =>
    findPropertyAs(keys, parseBool, def);