containsKey method

  1. @override
bool containsKey(
  1. Object? key
)
inherited

Returns whether this multimap contains the given key.

Implementation

@override
bool containsKey(Object? key) => _map.keys.contains(key);