toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final collectionSizeError = this.collectionSizeError;
  final conversionAdjustmentUploadError =
      this.conversionAdjustmentUploadError;
  final conversionUploadError = this.conversionUploadError;
  final dateError = this.dateError;
  final distinctError = this.distinctError;
  final fieldError = this.fieldError;
  final mutateError = this.mutateError;
  final notAllowlistedError = this.notAllowlistedError;
  final stringFormatError = this.stringFormatError;
  final stringLengthError = this.stringLengthError;
  return {
    'collectionSizeError': ?collectionSizeError,
    'conversionAdjustmentUploadError': ?conversionAdjustmentUploadError,
    'conversionUploadError': ?conversionUploadError,
    'dateError': ?dateError,
    'distinctError': ?distinctError,
    'fieldError': ?fieldError,
    'mutateError': ?mutateError,
    'notAllowlistedError': ?notAllowlistedError,
    'stringFormatError': ?stringFormatError,
    'stringLengthError': ?stringLengthError,
  };
}