coalesce bool?
static bool replaceBool(bool? value, {bool defaultValue = false}) { if (value == null) return defaultValue; return value; }