MetricValue constructor

MetricValue({
  1. List<String>? cidrs,
  2. int? count,
  3. double? number,
  4. List<double>? numbers,
  5. List<int>? ports,
  6. List<String>? strings,
})

Implementation

MetricValue({
  this.cidrs,
  this.count,
  this.number,
  this.numbers,
  this.ports,
  this.strings,
});