containsKey method

bool containsKey(
  1. String key
)

Returns true if the map contains key.

Implementation

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