RequestCancelExternalWorkflowExecutionInitiatedEventAttributes.fromJson constructor
RequestCancelExternalWorkflowExecutionInitiatedEventAttributes.fromJson()
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?,
);
}