decLockCount property Null safety
decrements the lock count and returns the new lock count.
Implementation
int get decLockCount {
var _lockCount = _lockCountForName;
_lockCount--;
_lockCounts[name] = _lockCount;
verbose(() => 'Decremented lock: $_lockCountForName');
return _lockCount;
}