isNotEmpty static method

bool isNotEmpty(
  1. Object? object
)

Returns true String or List or Map is not empty.

Implementation

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