ScoreState constructor

const ScoreState({
  1. int score = 0,
  2. int combo = 0,
  3. bool backToBack = false,
})

Implementation

const ScoreState({
  this.score = 0,
  this.combo = 0,
  this.backToBack = false,
});