containsValue method

bool containsValue(
  1. V value
)

Return true if the value exists in any of the sets.

Implementation

bool containsValue(V value) => getEntryWithValue(value) != null;