toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final categoricalThresholdConfig = this.categoricalThresholdConfig;
  final importFeaturesAnalysis = this.importFeaturesAnalysis;
  final numericalThresholdConfig = this.numericalThresholdConfig;
  final snapshotAnalysis = this.snapshotAnalysis;
  return {
    'categoricalThresholdConfig': ?categoricalThresholdConfig,
    'importFeaturesAnalysis': ?importFeaturesAnalysis,
    'numericalThresholdConfig': ?numericalThresholdConfig,
    'snapshotAnalysis': ?snapshotAnalysis,
  };
}