UXPRatingField constructor

const UXPRatingField({
  1. Key? key,
  2. required String value,
  3. Function? onChange,
  4. String? label,
  5. String? description,
  6. Color? filledColor,
})

Implementation

const UXPRatingField({
  Key? key,
  required this.value,
  this.onChange,
  this.label,
  this.description,
  this.filledColor,
}) : super(key: key);