Metric constructor

Metric({
  1. double? doubleValue,
  2. String? intValue,
  3. String? name,
  4. String? stringValue,
})

Implementation

Metric({
  this.doubleValue,
  this.intValue,
  this.name,
  this.stringValue,
});