CompleteWorkflowExecutionFailedEventAttributes.fromJson constructor
Implementation
factory CompleteWorkflowExecutionFailedEventAttributes.fromJson(
Map<String, dynamic> json) {
return CompleteWorkflowExecutionFailedEventAttributes(
cause: (json['cause'] as String).toCompleteWorkflowExecutionFailedCause(),
decisionTaskCompletedEventId: json['decisionTaskCompletedEventId'] as int,
);
}