isNullOrFalse property

bool get isNullOrFalse

Checks if the value is null or false.

Implementation

bool get isNullOrFalse => this == null || this == false;