isNotEmpty function

bool isNotEmpty(
  1. dynamic l
)

判断一个数值是否非空。

l - 要判断的动态变量。 Returns true 如果变量非空,否则 false

Implementation

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