MetricThreshold constructor

MetricThreshold({
  1. required String level,
  2. required String operator_,
  3. required double value,
  4. String? valueUnit,
  5. int? windowSeconds,
})

Returns a new MetricThreshold instance.

Implementation

MetricThreshold({
  required this.level,
  required this.operator_,
  required this.value,
  this.valueUnit,
  this.windowSeconds,
});