FeedbackRatingWidget constructor

const FeedbackRatingWidget({
  1. Key? key,
  2. void onRatingChanged(
    1. int rating
    )?,
  3. int? initialRating,
  4. String label = 'How do you feel?',
})

Implementation

const FeedbackRatingWidget({
  super.key,
  this.onRatingChanged,
  this.initialRating,
  this.label = 'How do you feel?',
});