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