isEmptyOrNull property

bool isEmptyOrNull

Return a bool if the string is null or empty

Implementation

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