isNotEmpty function

bool isNotEmpty(
  1. dynamic obj
)

Implementation

bool isNotEmpty(obj) {
  assert(obj is String || obj is List || obj == null);
  return !isEmpty(obj);
}