isNotFalse property

bool get isNotFalse

Checks if the boolean value is not false.

Implementation

bool get isNotFalse => this == null || this!;