getWorkflowExecutions method

  1. @override
Future<List<WorkflowExecutionResult>> getWorkflowExecutions(
  1. String workflowId
)
override

Get workflow execution history

Implementation

@override
Future<List<WorkflowExecutionResult>> getWorkflowExecutions(String workflowId) async {
  return _executionResults.values
      .where((result) => result.workflowId == workflowId)
      .toList();
}