将 Map 转换为 List
static List<dynamic> mapToList(Map<String, dynamic> map) { return map.entries.map((entry) => entry.value).toList(); }