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