isNotEmpty function

bool isNotEmpty(
  1. dynamic l
)

判断一个数值是否非空 >>>

Implementation

bool isNotEmpty(dynamic l) {
  return !isEmpty(l);
}