Get a boolean value with a fallback
bool? getBool(String name, {bool? defaultValue}) { return get<bool>(name) ?? defaultValue; }