WorkspaceHookOutcome constructor

const WorkspaceHookOutcome({
  1. required WorkspaceHookKind kind,
  2. required bool succeeded,
  3. required bool timedOut,
  4. required int? exitCode,
  5. required String output,
})

Creates an outcome.

Implementation

const WorkspaceHookOutcome({
  required this.kind,
  required this.succeeded,
  required this.timedOut,
  required this.exitCode,
  required this.output,
});