QUStarRating constructor

QUStarRating({
  1. Key? key,
  2. required double rating,
  3. required dynamic onChanged(
    1. double
    ),
  4. bool disabled = false,
  5. int count = 5,
  6. bool allowHalf = false,
})

Implementation

QUStarRating(
    {Key? key,
    required this.rating,
    required this.onChanged,
    this.disabled = false,
    this.count = 5,
    this.allowHalf = false});