字符串为空
static bool strEmpty(String? value) { if (value == null) return true; return value.trim().isEmpty; }