isNotFalse property

bool get isNotFalse

Returns true if the value is null and true. Otherwise false is returned.

Implementation

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