dynamic clear(
Map map
)

Not documented.

Source

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