Timer
Timer timer([Function? function]) { late Timer timer; timer = Timer(this, () { if (function != null) function.call(); timer.cancel(); }); return timer; }