toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final anomalyCount = this.anomalyCount;
  final deployedModelId = this.deployedModelId;
  final featureStats = this.featureStats;
  final objective = this.objective;
  return {
    'anomalyCount': ?anomalyCount,
    'deployedModelId': ?deployedModelId,
    'featureStats': ?featureStats,
    'objective': ?objective,
  };
}