optionalBool static method Null safety
- String? value
Implementation
static bool? optionalBool(String? value) =>
value != null ? stringToBool(value) : null;
static bool? optionalBool(String? value) =>
value != null ? stringToBool(value) : null;