📜  如何在 Flutter 中创建计时器 - Dart 代码示例

📅  最后修改于: 2022-03-11 14:48:03.696000             🧑  作者: Mango

代码示例2
Timer(Duration(seconds: 3), () {
  print("Yeah, this line is printed after 3 second");
});

print('This line is printed first');
Copied!