RunManyScripts.sequentially constructor

const RunManyScripts.sequentially({
  1. required Iterable<CommandToRun> commands,
  2. required Bindings bindings,
  3. required Logger logger,
  4. Duration? retryAfter,
  5. int maxAttempts = 3,
})

Implementation

const RunManyScripts.sequentially({
  required this.commands,
  required this.bindings,
  required this.logger,
  this.retryAfter,
  this.maxAttempts = 3,
}) : sequentially = true;