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