toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final failedObjectCount = this.failedObjectCount;
final succeededObjectCount = this.succeededObjectCount;
final totalBytesFound = this.totalBytesFound;
final totalObjectCount = this.totalObjectCount;
return {
'failedObjectCount': ?failedObjectCount,
'succeededObjectCount': ?succeededObjectCount,
'totalBytesFound': ?totalBytesFound,
'totalObjectCount': ?totalObjectCount,
};
}