Countdown constructor
const
Countdown({
- Key? key,
- required List<
IntervalType> intervals, - required Widget build(),
- Function? onFinished,
- CountdownController? controller,
Implementation
const Countdown({
super.key,
required this.intervals,
required this.build,
this.onFinished,
this.controller,
});