removeAll method

  1. @override
List<V> removeAll(
  1. Object? key
)

Removes the association for the given key. Returns the collection of removed values, or an empty iterable if key was unmapped.

Implementation

@override
List<V> removeAll(Object? key) => super.removeAll(key) as List<V>;