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