isFalse property

bool get isFalse

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

Implementation

bool get isFalse => this != null && !this!;