CountNumberButton constructor

CountNumberButton({
  1. Key? key,
  2. required double width,
  3. required double height,
  4. required int initValue,
  5. required int minValue,
  6. required int maxValue,
  7. required Color iconColor,
  8. required Color buttonColor,
  9. required Color textColor,
  10. required double iconSize,
  11. required Icon icon_left,
  12. required Icon icon_right,
  13. required ValueChanged onChanged,
  14. required double textsize,
})

Implementation

CountNumberButton({
  Key? key,
  required this.width,
  required this.height,
  required this.initValue,
  required this.minValue,
  required this.maxValue,
  required this.iconColor,
  required this.buttonColor,
  required this.textColor,
  required this.iconSize,
  required this.icon_left,
  required this.icon_right,
  required this.onChanged,
  required this.textsize,
}) : super(key: key);