EasyRate constructor

const EasyRate({
  1. Key? key,
  2. int count = 5,
  3. bool? disable,
  4. int? defaultValue,
  5. ChangeCallback? onChange,
  6. IconData? icon,
  7. bool? allowClear = false,
})

Implementation

const EasyRate({
  Key? key,
  this.count = 5,
  this.disable,
  this.defaultValue,
  this.onChange,
  this.icon,
  this.allowClear = false,
}) : super(key: key);