contains method

bool contains(
  1. K key
)

Retrieves the value at the specified index.

Implementation

bool contains(K key) {
  return _indizes.containsKey(key);
}