MeasureValue constructor

MeasureValue(
  1. String funcName, {
  2. int totalHits = 0,
  3. int totalPendingHits = 0,
  4. int totalDurationNs = 0,
  5. int lastDurationNs = -1,
  6. int lowestDurationNs = -1,
  7. int highestDurationNs = -1,
})

Implementation

MeasureValue(
  this.funcName, {
  this.totalHits = 0,
  this.totalPendingHits = 0,
  this.totalDurationNs = 0,
  this.lastDurationNs = -1,
  this.lowestDurationNs = -1,
  this.highestDurationNs = -1,
});