toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final ancestorIterationNumbers = this.ancestorIterationNumbers;
  final ancestorTaskNumbers = this.ancestorTaskNumbers;
  final eventAttemptNum = this.eventAttemptNum;
  final integrationName = this.integrationName;
  final taskAttemptNum = this.taskAttemptNum;
  final taskLabel = this.taskLabel;
  final taskName = this.taskName;
  final taskNumber = this.taskNumber;
  return {
    'ancestorIterationNumbers': ?ancestorIterationNumbers,
    'ancestorTaskNumbers': ?ancestorTaskNumbers,
    'eventAttemptNum': ?eventAttemptNum,
    'integrationName': ?integrationName,
    'taskAttemptNum': ?taskAttemptNum,
    'taskLabel': ?taskLabel,
    'taskName': ?taskName,
    'taskNumber': ?taskNumber,
  };
}