Dart Timer Repeat

[Solved] Dart Timer Repeat | Typescript - Code Explorer | yomemimo.com
Question : dart timer repeat

Answered by : vastemonde

Timer(Duration(seconds: 3), () { print("Yeah, this line is printed after 3 second");
});
// repeatedly :
Timer.periodic(Duration(seconds: 5), (timer) { print(DateTime.now());
});

Source : https://fluttermaster.com/tips-to-use-timer-in-dart-and-flutter/ | Last Update : Sun, 04 Jul 21

Answers related to dart timer repeat

Code Explorer Popular Question For Typescript