FFStars constructor

FFStars({
  1. required Widget normalStar,
  2. required Widget selectedStar,
  3. int starCount = 5,
  4. double defaultStars = 0.0,
  5. double step = 0.01,
  6. bool rounded = false,
  7. double starWidth = 30.0,
  8. double starHeight = 30.0,
  9. double starMargin = 10.0,
  10. double miniStars = 0.0,
  11. bool justShow = false,
  12. FFStarsChanged? starsChanged,
  13. bool followChange = false,
})

Implementation

FFStars({
  required this.normalStar,
  required this.selectedStar,
  this.starCount = 5,
  this.defaultStars = 0.0,
  this.step = 0.01,
  this.rounded = false,
  this.starWidth = 30.0,
  this.starHeight = 30.0,
  this.starMargin = 10.0,
  this.miniStars = 0.0,
  this.justShow = false,
  this.starsChanged,
  this.followChange = false,
});