start method
Implementation
void start(Duration duration, void Function() callback) {
stop();
_handle = Timer(duration, () {
_handle = null;
callback();
});
}
void start(Duration duration, void Function() callback) {
stop();
_handle = Timer(duration, () {
_handle = null;
callback();
});
}