containsKey method

bool containsKey(
  1. K? key
)

Return true if the given key exists.

Implementation

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