toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (anomalyDetectionThreshold != null)
        'anomalyDetectionThreshold': anomalyDetectionThreshold!,
      if (anomalyUri != null) 'anomalyUri': anomalyUri!,
      if (distributionDeviation != null)
        'distributionDeviation': distributionDeviation!,
      if (endTime != null) 'endTime': endTime!,
      if (score != null) 'score': score!,
      if (startTime != null) 'startTime': startTime!,
      if (statsUri != null) 'statsUri': statsUri!,
    };