CounterSection constructor
const
CounterSection({
- Key? key,
- required int counter,
- required VoidCallback onIncrement,
- required VoidCallback onDecrement,
Implementation
const CounterSection({
super.key,
required this.counter,
required this.onIncrement,
required this.onDecrement,
});