isNullEmptyZeroOrFalse property

bool get isNullEmptyZeroOrFalse

Implementation

bool get isNullEmptyZeroOrFalse =>
    this == null || this == '' || !(this as bool) || this == 0;