FastStarRating constructor

const FastStarRating({
  1. Key? key,
  2. int maxRating = 5,
  3. double initialRating = 0,
  4. dynamic onRatingChanged(
    1. double
    )?,
  5. Color? emptyColor,
  6. Color? filledColor,
  7. double size = kFastIconSizeSmall,
  8. bool disabled = false,
  9. bool readOnly = false,
})

Implementation

const FastStarRating({
  super.key,
  this.maxRating = 5,
  this.initialRating = 0,
  this.onRatingChanged,
  this.emptyColor,
  this.filledColor,
  this.size = kFastIconSizeSmall,
  this.disabled = false,
  this.readOnly = false,
});