Metrics constructor

Metrics(
  1. String id, {
  2. int total = 0,
  3. int current = 0,
  4. int totalLifetime = 0,
  5. int failures = 0,
})

Implementation

Metrics(
  this.id, {
  this.total = 0,
  this.current = 0,
  this.totalLifetime = 0,
  this.failures = 0,
});