Map<String, dynamic> removeNulls(Map<String, dynamic> map) { map.removeWhere((key, value) => value == null); return map; }