clear method

dynamic clear (Map map)

Implementation

static clear(Map map) {
  for (final k in map.keys.toList()) {
    map.remove(k);
  }
}