toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final categoricalStatsConfig = this.categoricalStatsConfig;
final deltaPresenceEstimationConfig = this.deltaPresenceEstimationConfig;
final kAnonymityConfig = this.kAnonymityConfig;
final kMapEstimationConfig = this.kMapEstimationConfig;
final lDiversityConfig = this.lDiversityConfig;
final numericalStatsConfig = this.numericalStatsConfig;
return {
'categoricalStatsConfig': ?categoricalStatsConfig,
'deltaPresenceEstimationConfig': ?deltaPresenceEstimationConfig,
'kAnonymityConfig': ?kAnonymityConfig,
'kMapEstimationConfig': ?kMapEstimationConfig,
'lDiversityConfig': ?lDiversityConfig,
'numericalStatsConfig': ?numericalStatsConfig,
};
}