TaskConfig constructor

const TaskConfig({
  1. int priority = 1,
  2. bool required = true,
  3. Duration? timeout,
  4. String? name,
})

Implementation

const TaskConfig({
  this.priority = 1,
  this.required = true,
  this.timeout,
  this.name,
});