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