toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (currentRepairPhaseIndex != null)
    'currentRepairPhaseIndex': currentRepairPhaseIndex!,
  if (jobId != null) 'jobId': jobId!,
  if (phaseId != null) 'phaseId': phaseId!,
  if (repairPhases != null) 'repairPhases': repairPhases!,
  if (rollout != null) 'rollout': rollout!,
};