toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final partsProcessed = this.partsProcessed;
final partsTotal = this.partsTotal;
final timeLeftMs = this.timeLeftMs;
return {
'partsProcessed': ?partsProcessed,
'partsTotal': ?partsTotal,
'timeLeftMs': ?timeLeftMs,
};
}