DecisionTaskCompletedEventAttributes.fromJson constructor
Implementation
factory DecisionTaskCompletedEventAttributes.fromJson(
Map<String, dynamic> json) {
return DecisionTaskCompletedEventAttributes(
scheduledEventId: json['scheduledEventId'] as int,
startedEventId: json['startedEventId'] as int,
executionContext: json['executionContext'] as String?,
);
}