QueuingConfiguration constructor

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

Default constructor.

Implementation

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