SketchData constructor

SketchData({
  1. double maxScore = 0,
  2. double scoreSum = 0,
  3. double weightedDurationSum = 0,
})

Implementation

SketchData({
  this.maxScore = 0,
  this.scoreSum = 0,
  this.weightedDurationSum = 0,
});