isNullEmptyZeroOrFalse method

bool isNullEmptyZeroOrFalse()

Implementation

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