WorkflowExecutionCompletedEventAttributes.fromJson constructor

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

Implementation

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