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