isEmptyOrNull property

bool get isEmptyOrNull

Return a bool if the string is null or empty

Implementation

bool get isEmptyOrNull => this == null || this!.isEmpty;