getWorkflowExecutions method
Get workflow execution history
Implementation
@override
Future<List<WorkflowExecutionResult>> getWorkflowExecutions(
String workflowId,
) async {
return _executionResults.values
.where((result) => result.workflowId == workflowId)
.toList();
}