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