remove method

V? remove(
  1. K key
)

Implementation

V? remove(K key) {
  final v = $.remove(key);
  notifyChange();
  return v;
}