ActiveLock<O> constructor

const ActiveLock<O>({
  1. required LockScope lockScope,
  2. required bool isWriteLock,
  3. required Depth depth,
  4. O? owner,
  5. double? timeout,
  6. Uri? lockToken,
  7. Uri? lockRoot,
})

Implementation

const ActiveLock(
    {required this.lockScope,
    required this.isWriteLock,
    required this.depth,
    this.owner,
    this.timeout,
    this.lockToken,
    this.lockRoot});