isNotEmpty property

bool isNotEmpty

Returns true if this is NOT null and NOT empty

since 1.1.0

Implementation

bool get isNotEmpty {
  return isEmpty.isFalse;
}