containsKey method

bool containsKey(
  1. String key
)

Whether this map contains the given key.

Implementation

bool containsKey(String key) => _data.containsKey(key);