CounterScreen constructor

const CounterScreen({
  1. Key? key,
  2. required int initialValue,
})

Implementation

const CounterScreen({
  super.key,
  required this.initialValue,
});