bool? byBool(String key, {bool? defaultValue}) { if (this[key] == null) return defaultValue; return byString(key) == "true"; }