isKeyPending method

bool isKeyPending(
  1. K key
)

Checks if a key is pending (not yet resolved to an item).

Implementation

bool isKeyPending(K key) {
  return _pendingKeys.contains(key);
}