loadExecution method

  1. @override
Future<WorkflowExecution?> loadExecution(
  1. String workflowExecutionId
)
override

Loads a workflow execution by its ID.

Returns null if not found.

Implementation

@override
Future<WorkflowExecution?> loadExecution(
  String workflowExecutionId,
) async {
  return _executions[workflowExecutionId];
}