Reads a bool value from json at key. Returns null if missing or wrong type.
json
key
bool? configBool(Map<String, Object?> json, String key) { final value = json[key]; return value is bool ? value : null; }