DecisionTaskCompletedEventAttributes.fromJson constructor

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

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?,
  );
}