isEmptyOrNull property

bool isEmptyOrNull

Return true if the string this is null or empty

Implementation

bool get isEmptyOrNull => this?.isEmpty ?? true;