isNEmpty property

bool isNEmpty

Whether the string is Null or has a length of Zero.

Implementation

bool get isNEmpty {
  if (isNull) return true;
  return this!.isEmpty;
}