CountdownWidget constructor

const CountdownWidget({
  1. Key? key,
  2. required Countdown countdown,
  3. TextStyle? textStyle,
  4. TextAlign? textAlign,
})

Creates a new countdown widget instance.

Implementation

const CountdownWidget({
  super.key,
  required this.countdown,
  this.textStyle,
  this.textAlign,
});