DeskRatingInput constructor

const DeskRatingInput({
  1. Key? key,
  2. required DeskRatingField field,
  3. DeskData? data,
  4. ValueChanged<int?>? onChanged,
})

Implementation

const DeskRatingInput({
  super.key,
  required this.field,
  this.data,
  this.onChanged,
});