EasyCountdownTimerWidget constructor

const EasyCountdownTimerWidget({
  1. required Duration duration,
  2. Key? key,
  3. TextStyle? digitTextStyle,
  4. TextStyle? separatorTextStyle,
  5. VoidCallback? onFinished,
  6. bool showDays = true,
  7. bool showHours = true,
  8. bool showMinutes = true,
  9. bool showSeconds = true,
  10. Widget? separatedWidget,
})

Implementation

const EasyCountdownTimerWidget({
  required this.duration,
  super.key,
  this.digitTextStyle,
  this.separatorTextStyle,
  this.onFinished,
  this.showDays = true,
  this.showHours = true,
  this.showMinutes = true,
  this.showSeconds = true,
  this.separatedWidget,
});