QuantityControllerWidget constructor

const QuantityControllerWidget({
  1. required TextEditingController textEditingController,
  2. required VoidCallback onDecreasePressed,
  3. required VoidCallback onIncreasePressed,
  4. ValueChanged<String?>? onChanged,
  5. ValueChanged<String?>? onSubmitted,
  6. ValueChanged<PointerDownEvent?>? onTapOutside,
  7. bool enabled = true,
  8. TextInputFormatter? textInputFormatter,
  9. Key? key,
})

Implementation

const QuantityControllerWidget({
  required this.textEditingController,
  required this.onDecreasePressed,
  required this.onIncreasePressed,
  this.onChanged,
  this.onSubmitted,
  this.onTapOutside,
  this.enabled = true,
  this.textInputFormatter,
  super.key,
});