locked method
Whether this ProviderModel is locked with lockKey or not.
Implementation
bool locked(ProviderLockKey lockKey) {
if (_lockQueues == null) {
return false;
}
return _lockQueues![lockKey]?.isNotEmpty == true;
}
Whether this ProviderModel is locked with lockKey or not.
bool locked(ProviderLockKey lockKey) {
if (_lockQueues == null) {
return false;
}
return _lockQueues![lockKey]?.isNotEmpty == true;
}