toJson method

Map<String, dynamic> toJson()

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,
  };
}