isNotEmpty function

bool isNotEmpty(
  1. Object? object
)

Implementation

bool isNotEmpty(Object? object) {
  return !isEmpty(object);
}