isNotEmpt static method

bool isNotEmpt(
  1. dynamic data
)

Implementation

static bool isNotEmpt(dynamic data) {
  return !isNullOrEmpty(data);
}