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