RunOneScript constructor

const RunOneScript({
  1. required CommandToRun command,
  2. required Bindings bindings,
  3. required Logger logger,
  4. required bool showOutput,
  5. Duration? retryAfter,
  6. int maxAttempts = 3,
})

Implementation

const RunOneScript({
  required this.command,
  required this.bindings,
  required this.logger,
  required this.showOutput,
  this.retryAfter,
  this.maxAttempts = 3,
});