WorkflowExecutionCount.fromJson constructor

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

Implementation

factory WorkflowExecutionCount.fromJson(Map<String, dynamic> json) {
  return WorkflowExecutionCount(
    count: json['count'] as int,
    truncated: json['truncated'] as bool?,
  );
}