cleanNullFromMapString static method
Implementation
static Map<String, String> cleanNullFromMapString(Map<String, String?> map) {
map.removeWhere((key, value) => value == null);
return map.map((key, value) => MapEntry(key, value.toString()));
}
static Map<String, String> cleanNullFromMapString(Map<String, String?> map) {
map.removeWhere((key, value) => value == null);
return map.map((key, value) => MapEntry(key, value.toString()));
}