Score constructor

Score({
  1. num? scaled,
  2. num? raw,
  3. num? min,
  4. num? max,
})

Implementation

Score({
  this.scaled,
  this.raw,
  this.min,
  this.max,
});