Task constructor

Task(
  1. String id,
  2. Function function,
  3. List args,
  4. int priority, {
  5. int maxRetries = 3,
})

Implementation

Task(this.id, this.function, this.args, this.priority, {this.maxRetries = 3});