QueueConfig constructor

QueueConfig({
  1. int maxConcurrency = 10,
  2. bool enabled = true,
})

Implementation

QueueConfig({
  this.maxConcurrency = 10,
  this.enabled = true,
});