isNotNullEmpty method

bool isNotNullEmpty()

Check text is not null and empty

Implementation

bool isNotNullEmpty() {
  if (this != null && this!.isNotEmpty) {
    return true;
  }
  return false;
}