StarsRating constructor

const StarsRating({
  1. required int level,
  2. required int currentLevelStars,
  3. required int stars,
  4. int? nextLevelStars,
})

Stars Rating constructor.

Implementation

const StarsRating({
  required this.level,
  required this.currentLevelStars,
  required this.stars,
  this.nextLevelStars,
}) : super._();