HooksWorkflowConfig constructor

const HooksWorkflowConfig({
  1. required String? afterCreate,
  2. required String? beforeRun,
  3. required String? afterRun,
  4. required String? beforeRemove,
  5. required Duration timeout,
  6. String? shellExecutable,
  7. List<String>? shellArguments,
})

Creates hook config.

Implementation

const HooksWorkflowConfig({
  required this.afterCreate,
  required this.beforeRun,
  required this.afterRun,
  required this.beforeRemove,
  required this.timeout,
  this.shellExecutable,
  this.shellArguments,
});