HookStepModel constructor

HookStepModel({
  1. required String name,
  2. required String command,
  3. Map<String, String>? env,
  4. String? workingDirectory,
  5. int? timeout,
  6. bool allowFailure = false,
  7. String? description,
})

Implementation

HookStepModel({
  required this.name,
  required this.command,
  this.env,
  this.workingDirectory,
  this.timeout,
  this.allowFailure = false,
  this.description,
});