isNotEmpty static method

bool isNotEmpty(
  1. String text
)

判断文本内容是否不为空

Implementation

static bool isNotEmpty(String text) {
  return !isEmpty(text);
}