TWQueue constructor

TWQueue({
  1. Duration? delay,
  2. int parallel = 1,
  3. Duration? timeout,
  4. bool lifo = false,
})

Implementation

TWQueue({
  this.delay,
  this.parallel = 1,
  this.timeout,
  this.lifo = false,
});