ExternalWorkflowExecutionSignaledEventAttributes.fromJson constructor

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

Implementation

factory ExternalWorkflowExecutionSignaledEventAttributes.fromJson(
    Map<String, dynamic> json) {
  return ExternalWorkflowExecutionSignaledEventAttributes(
    initiatedEventId: json['initiatedEventId'] as int,
    workflowExecution: WorkflowExecution.fromJson(
        json['workflowExecution'] as Map<String, dynamic>),
  );
}