isNotFalse method
Returns true when the value is not false.
A null value is treated as false.
Example:
dart bool? flag = true; flag.isNotFalse(); // true
Implementation
bool isNotFalse() => validate().isNotFalse();
Returns true when the value is not false.
A null value is treated as false.
Example:
dart bool? flag = true; flag.isNotFalse(); // true
bool isNotFalse() => validate().isNotFalse();