MetricData constructor

MetricData({
  1. String? metricName,
  2. DateTime? timestamp,
  3. double? value,
})

Implementation

MetricData({
  this.metricName,
  this.timestamp,
  this.value,
});