SecondsCountdownTimer constructor

const SecondsCountdownTimer({
  1. Key? key,
  2. required int endTime,
  3. required DateTime startDate,
  4. CountdownTimerWidgetBuilder? widgetBuilder,
  5. VoidCallback? onEnd,
})

Implementation

const SecondsCountdownTimer({
  Key? key,
  required this.endTime,
  required this.startDate,
  this.widgetBuilder,
  this.onEnd,
}) : super(key: key);