static void runAfter(Duration duration, {required Function action}){ Future.delayed(duration, (){ action(); }); }