Map不为空
static bool mapNotEmpty(Map? value) { if (value == null) return false; return value.isNotEmpty; }