TTimer constructor
const
TTimer({
- Key? key,
- bool enabled = true,
- int interval = 1000,
- VoidCallback? onTimer,
- VoidCallback? onStartTimer,
- VoidCallback? onStopTimer,
- Widget? child,
Implementation
const TTimer({
super.key,
this.enabled = true,
this.interval = 1000,
this.onTimer,
this.onStartTimer,
this.onStopTimer,
this.child,
});