boolOrDefault method

bool boolOrDefault(
  1. String key, {
  2. required bool defaultValue,
})

Implementation

bool boolOrDefault(String key, {required bool defaultValue}) =>
    configJson[key]?.toString().let((String it) => it == 'true') ??
    defaultValue;