contains method

  1. @override
bool contains(
  1. Object? key,
  2. Object? value
)
inherited

Returns whether this multimap contains the given association between key and value.

Implementation

@override
bool contains(Object? key, Object? value) =>
    _map[key]?.contains(value) == true;