getWorkflowExecutionResult method
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;
}