我想创建一个每x秒运行一次的函数..
在Java中有
TimerTask
但是扑朔迷离是什么?
import 'dart:async'; // import this
并且使用名为构造函数的Timer
类periodic
。
Timer.periodic(Duration(seconds: 1), (timer) {
// this block runs every second
// and when you want to stop it, simply call `timer.cancel();` here
});