contains method

bool contains(
  1. String key
)

Implementation

bool contains(String key) {
  return _data.containsKey(key);
}