CountDown constructor

const CountDown({
  1. Key? key,
  2. required Duration duration,
  3. Widget? replacement,
  4. TextStyle? style,
  5. TextStyle? separatorStyle,
  6. VoidCallback? onDone,
  7. bool showMinutes = true,
  8. bool showSeconds = true,
})

Implementation

const CountDown({
  super.key,
  required this.duration,
  this.replacement,
  this.style,
  this.separatorStyle,
  this.onDone,
  this.showMinutes = true,
  this.showSeconds = true,
});