toJson method

Map<String, dynamic> toJson()

Implementation

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