ExecOptions constructor

const ExecOptions({
  1. int? concurrency,
  2. bool? failFast,
  3. bool? orderDependents,
})

Implementation

const ExecOptions({
  this.concurrency,
  this.failFast,
  this.orderDependents,
});