AnimatedCountdownWidget constructor

const AnimatedCountdownWidget({
  1. Key? key,
  2. required Duration initialTime,
  3. bool animate = true,
  4. required TextStyle textStyle,
})

Implementation

const AnimatedCountdownWidget({
  Key? key,
  required this.initialTime,
  this.animate = true,
  required this.textStyle,
}) : super(key: key);