List不为空
static bool listNotEmpty(List? list) { if (list == null) return false; if (list.length == 0) return false; return true; }