isNullEmptyOrFalse method

bool isNullEmptyOrFalse()

Implementation

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