isNotEmpty static method

bool isNotEmpty(
  1. Object object
)

Returns true String or List or Map is not empty. 判断object是否不为空

Implementation

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