WorkflowExecutionOpenCounts.fromJson constructor

WorkflowExecutionOpenCounts.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory WorkflowExecutionOpenCounts.fromJson(Map<String, dynamic> json) {
  return WorkflowExecutionOpenCounts(
    openActivityTasks: json['openActivityTasks'] as int,
    openChildWorkflowExecutions: json['openChildWorkflowExecutions'] as int,
    openDecisionTasks: json['openDecisionTasks'] as int,
    openTimers: json['openTimers'] as int,
    openLambdaFunctions: json['openLambdaFunctions'] as int?,
  );
}