JCountdown constructor
const
JCountdown({
- Key? key,
- int seconds = 10,
- void onTick(
- int remaining
- VoidCallback? onComplete,
- Widget builder(
- BuildContext context,
- int remaining
- TextStyle? textStyle,
- bool autostart = true,
Implementation
const JCountdown({
super.key,
this.seconds = 10,
this.onTick,
this.onComplete,
this.builder,
this.textStyle,
this.autostart = true,
});