toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (endTime != null) 'endTime': endTime!,
if (metrics != null)
'metrics': metrics!.map((value) => value.toJson()).toList(),
if (progress != null) 'progress': progress!.toJson(),
if (stageId != null) 'stageId': stageId!,
if (startTime != null) 'startTime': startTime!,
if (state != null) 'state': state!,
};