clear method
Removes all entries from the map.
After this, the map is empty.
final planets = <int, String>{1: 'Mercury', 2: 'Venus', 3: 'Earth'};
planets.clear(); // {}
Implementation
@override
void clear() {
Map<K, V> temp = Map.from(impl);
impl.clear();
if (hasRemovedCallback != null) {
temp.forEach(hasRemovedCallback!);
}
}