RatingStarsSimpleProps constructor

const RatingStarsSimpleProps({
  1. required double rating,
  2. int maxStars = 5,
  3. double size = 16,
  4. bool interactive = false,
  5. void onRatingChanged(
    1. int
    )?,
})

Implementation

const RatingStarsSimpleProps({
  required this.rating,
  this.maxStars = 5,
  this.size = 16,
  this.interactive = false,
  this.onRatingChanged,
});