isNotEmpty property

bool isNotEmpty

Whether this string is not empty

Implementation

bool get isNotEmpty {
  if (this == null) {
    return false;
  }
  return this!.isNotEmpty;
}