clear 方法

void clear()
重写

从映射中删除所有条目。

之后,映射为空。

final planets = <int, String>{1: 'Mercury', 2: 'Venus', 3: 'Earth'};
planets.clear(); // {}

实现

void clear() {
  throw new UnsupportedError("Not supported");
}