isNotTrue property

bool get isNotTrue

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

Implementation

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