Timer constructor
Timer(
- double limit, {
- VoidCallback? onTick,
- bool repeat = false,
- bool autoStart = true,
Implementation
Timer(
this.limit, {
this.onTick,
this.repeat = false,
bool autoStart = true,
}) : _running = autoStart;