isKeyPending method
Checks if a key is pending (not yet resolved to an item).
Implementation
bool isKeyPending(K key) {
return _pendingKeys.contains(key);
}
Checks if a key is pending (not yet resolved to an item).
bool isKeyPending(K key) {
return _pendingKeys.contains(key);
}