isNotTrue method

bool isNotTrue()

Checks if the boolean value is not true.

Returns true if the value is not true, otherwise returns false.

Example:

bool? value = false;
print(value.isNotTrue()); // true

Implementation

bool isNotTrue() => validate().isNotTrue();