isNotNullOrEmpty property

bool get isNotNullOrEmpty

isNotNullOrEmpty: checks if the string is not null or empty

Implementation

bool get isNotNullOrEmpty {
  return !isNullOrEmpty;
}