How to fetch data (method call) every five seconds in Flutter?
在 JavaScript 中,我可以通过使用
这可以通过这样的方式来实现。
1 2 3 4 5 6 7 | import 'dart:async'; main() { const fiveSeconds = const Duration(seconds: 5); // _fetchData() is your function to fetch data Timer.periodic(fiveSeconds, (Timer t) => _fetchData()); } |