QuantityControllerWidget constructor
- required TextEditingController textEditingController,
- required VoidCallback onDecreasePressed,
- required VoidCallback onIncreasePressed,
- ValueChanged<
String?> ? onChanged, - ValueChanged<
String?> ? onSubmitted, - ValueChanged<
PointerDownEvent?> ? onTapOutside, - bool enabled = true,
- TextInputFormatter? textInputFormatter,
- 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,
});