StarRating constructor

StarRating({
  1. int starCount = 5,
  2. double rating = .0,
  3. RatingChangeCallback? onRatingChanged,
  4. Color? color,
  5. double size = 25,
})

Implementation

StarRating({
  this.starCount = 5,
  this.rating = .0,
  this.onRatingChanged,
  this.color,
  this.size = 25,
});