Anomaly constructor

Anomaly({
  1. required String anomalyId,
  2. required AnomalyScore anomalyScore,
  3. required Impact impact,
  4. required String monitorArn,
  5. String? anomalyEndDate,
  6. String? anomalyStartDate,
  7. String? dimensionValue,
  8. AnomalyFeedbackType? feedback,
  9. List<RootCause>? rootCauses,
})

Implementation

Anomaly({
  required this.anomalyId,
  required this.anomalyScore,
  required this.impact,
  required this.monitorArn,
  this.anomalyEndDate,
  this.anomalyStartDate,
  this.dimensionValue,
  this.feedback,
  this.rootCauses,
});