containsKey method

bool containsKey(
  1. String key
)

Implementation

bool containsKey(String key) {
  if (_map == null)
    throw Exception(
        "The PageCollectionMap instance was accessed before it was initialized (operator [])");
  return _map!.containsKey(key);
}