Returns whether this multimap contains the given association between key and value.
key
value
@override bool contains(Object? key, Object? value) => _map[key]?.contains(value) == true;