MultiLock constructor

MultiLock({
  1. required Iterable<Lock> locks,
})

Creates a new multi lock.

Implementation

MultiLock({required Iterable<Lock> locks}) : _locks = locks;