CuReRating constructor

const CuReRating({
  1. Key? key,
  2. int? max,
  3. IconData? icon,
  4. dynamic onTap(
    1. int
    )?,
  5. required int rating,
  6. Color? color,
  7. bool? disabled,
  8. double? size,
})

Implementation

const CuReRating({
  super.key,
  this.max,
  this.icon,
  this.onTap,
  required this.rating,
  this.color,
  this.disabled,
  this.size,
});