WorkflowResult<T extends Object?> constructor
const
WorkflowResult<T extends Object?> ({
- required String runId,
- required WorkflowStatus status,
- required RunState state,
- T? value,
- Object? rawResult,
- bool timedOut = false,
Creates a workflow result snapshot.
Implementation
const WorkflowResult({
required this.runId,
required this.status,
required this.state,
this.value,
this.rawResult,
this.timedOut = false,
});