TimerText constructor

const TimerText({
  1. Key? key,
  2. required ValueNotifier<int> currentSeconds,
  3. TextStyle? textStyle,
})

Implementation

const TimerText({
  Key? key,
  required this.currentSeconds,
  this.textStyle,
}) : super(key: key);