AntdRate constructor

const AntdRate({
  1. Key? key,
  2. bool? allowClear = true,
  3. bool? allowHalf = false,
  4. bool? autoFocus = false,
  5. IconData? icon,
  6. int? count = 5,
  7. bool? disabled = false,
  8. List<String>? tooltips,
  9. int? defalutValue = 0,
  10. int? value,
  11. VoidCallback? onFocus,
  12. VoidCallback? onBlur,
  13. void onChange(
    1. int
    )?,
  14. void onHoverChange(
    1. int
    )?,
  15. void onKeyDown(
    1. int
    )?,
})

Implementation

const AntdRate({
  super.key,
  this.allowClear = true,
  this.allowHalf = false,
  this.autoFocus = false,
  this.icon,
  this.count = 5,
  this.disabled = false,
  this.tooltips,
  this.defalutValue = 0,
  this.value,
  this.onFocus,
  this.onBlur,
  this.onChange,
  this.onHoverChange,
  this.onKeyDown,
});