cleanNullFromMap static method

Map cleanNullFromMap(
  1. Map map
)

Implementation

static Map cleanNullFromMap(Map map) {
  map.removeWhere((key, value) => value == null);
  return map;
}