isNotFalse method

bool isNotFalse()

Returns whether this value is not false.

Example: dart true.isNotFalse(); // true

Implementation

bool isNotFalse() => this;