isNotTrue method

bool isNotTrue()

Returns whether this value is not true.

Example: dart false.isNotTrue(); // true

Implementation

bool isNotTrue() => !this;