contains method

bool contains(
  1. int key
)

Determines whether the IDictionary contains an element with the specified key.

Implementation

bool contains(int key) {
  return _rawFormats.containsKey(key);
}