hasItem method

bool hasItem(
  1. K itemKey
)

Implementation

bool hasItem(K itemKey) {
  _checkNotDisposed();
  return _tree.getNodeData(ItemKey<K>(itemKey)) != null;
}