toJson method

Map<String, dynamic> toJson()

Implementation

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