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