字符串不为空
static bool strNotEmpty(String? value) { if (value == null) return false; return value.trim().isNotEmpty; }