getWorkflowExecutionResult method

  1. @override
Future<WorkflowExecutionResult> getWorkflowExecutionResult(
  1. String executionId
)
override

Get workflow execution result

Implementation

@override
Future<WorkflowExecutionResult> getWorkflowExecutionResult(String executionId) async {
  final result = _executionResults[executionId];
  if (result == null) {
    throw ArgumentError('Execution result not found');
  }
  return result;
}