RequestCancelExternalWorkflowExecutionInitiatedEventAttributes.fromJson constructor

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

Implementation

factory RequestCancelExternalWorkflowExecutionInitiatedEventAttributes.fromJson(
    Map<String, dynamic> json) {
  return RequestCancelExternalWorkflowExecutionInitiatedEventAttributes(
    decisionTaskCompletedEventId: json['decisionTaskCompletedEventId'] as int,
    workflowId: json['workflowId'] as String,
    control: json['control'] as String?,
    runId: json['runId'] as String?,
  );
}