toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currentRepairPhaseIndex = this.currentRepairPhaseIndex;
  final jobId = this.jobId;
  final phaseId = this.phaseId;
  final repairPhases = this.repairPhases;
  final rollout = this.rollout;
  return {
    'currentRepairPhaseIndex': ?currentRepairPhaseIndex,
    'jobId': ?jobId,
    'phaseId': ?phaseId,
    'repairPhases': ?repairPhases,
    'rollout': ?rollout,
  };
}