containsKey method

bool containsKey(
  1. K? key
)
inherited

Returns true if this map contains the given key.

Implementation

bool containsKey(K? key) => _map.containsKey(key);