WorkflowExecutionCanceledEventAttributes.fromJson constructor

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

Implementation

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