WorkspaceHookOutcome constructor
const
WorkspaceHookOutcome({
- required WorkspaceHookKind kind,
- required bool succeeded,
- required bool timedOut,
- required int? exitCode,
- required String output,
Creates an outcome.
Implementation
const WorkspaceHookOutcome({
required this.kind,
required this.succeeded,
required this.timedOut,
required this.exitCode,
required this.output,
});