RatingBar constructor

RatingBar({
  1. double maxRating = 10.0,
  2. int count = 5,
  3. double value = 10.0,
  4. double size = 20,
  5. required String normalImage,
  6. required String selectImage,
  7. double padding = 5,
  8. bool selectAble = false,
  9. required ValueChanged<String> onRatingUpdate,
})

Implementation

RatingBar(
    {this.maxRating = 10.0,
    this.count = 5,
    this.value = 10.0,
    this.size = 20,
    required this.normalImage,
    required this.selectImage,
    this.padding = 5,
    this.selectAble = false,
    required this.onRatingUpdate});