toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final imageTransformations = this.imageTransformations;
  final infoTypeTransformations = this.infoTypeTransformations;
  final recordTransformations = this.recordTransformations;
  final transformationErrorHandling = this.transformationErrorHandling;
  return {
    'imageTransformations': ?imageTransformations,
    'infoTypeTransformations': ?infoTypeTransformations,
    'recordTransformations': ?recordTransformations,
    'transformationErrorHandling': ?transformationErrorHandling,
  };
}