QueuingConfiguration constructor

const QueuingConfiguration({
  1. int? handSize,
  2. int? queueLengthLimit,
  3. int? queues,
})

The main constructor.

Implementation

const QueuingConfiguration({
  this.handSize,
  this.queueLengthLimit,
  this.queues,
});