SignalExternalWorkflowExecutionInitiatedEventAttributes.fromJson constructor

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

Implementation

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