elem method

bool elem(
  1. V value
)

Test whether or not value exists in this Map

Same as dart's containsValue.

Implementation

bool elem(V value) => containsValue(value);