isNotNEmpty property

bool isNotNEmpty

Whether the string is not Null or the length is not Zero.

Implementation

bool get isNotNEmpty {
  if (isNull) return false;
  return this!.isNotEmpty;
}