HookStep constructor

const HookStep({
  1. required String command,
  2. List<String> arguments = const [],
  3. String? workingDirectory,
  4. Map<String, String> environment = const {},
  5. Duration? timeout,
  6. HookOn on = HookOn.always,
  7. bool continueOnError = false,
})

Implementation

const HookStep({
  required this.command,
  this.arguments = const [],
  this.workingDirectory,
  this.environment = const {},
  this.timeout,
  this.on = HookOn.always,
  this.continueOnError = false,
});