run method
run the function
Implementation
run(VoidCallback action, {Duration? delay}) {
_timer?.cancel();
_timer = Timer(delay ?? this.delay, action);
}
run the function
run(VoidCallback action, {Duration? delay}) {
_timer?.cancel();
_timer = Timer(delay ?? this.delay, action);
}