toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final categoricalStatsResult = this.categoricalStatsResult;
  final deltaPresenceEstimationResult = this.deltaPresenceEstimationResult;
  final kAnonymityResult = this.kAnonymityResult;
  final kMapEstimationResult = this.kMapEstimationResult;
  final lDiversityResult = this.lDiversityResult;
  final numericalStatsResult = this.numericalStatsResult;
  final requestedOptions = this.requestedOptions;
  final requestedPrivacyMetric = this.requestedPrivacyMetric;
  final requestedSourceTable = this.requestedSourceTable;
  return {
    'categoricalStatsResult': ?categoricalStatsResult,
    'deltaPresenceEstimationResult': ?deltaPresenceEstimationResult,
    'kAnonymityResult': ?kAnonymityResult,
    'kMapEstimationResult': ?kMapEstimationResult,
    'lDiversityResult': ?lDiversityResult,
    'numericalStatsResult': ?numericalStatsResult,
    'requestedOptions': ?requestedOptions,
    'requestedPrivacyMetric': ?requestedPrivacyMetric,
    'requestedSourceTable': ?requestedSourceTable,
  };
}