dart:async
库中Timer.cancel
方法的用法介绍如下。
用法:
void cancel()
取消定时器。
一旦 Timer 被取消,回调函数将不会被计时器调用。允许在 Timer 上多次调用 cancel,并且不会产生进一步的影响。
例子:
final timer =
Timer(const Duration(seconds: 5), () => print('Timer finished'));
// Cancel timer, callback never called.
timer.cancel();
相关用法
- Dart Timer.tick用法及代码示例
- Dart Timer.periodic用法及代码示例
- Dart Timer.run用法及代码示例
- Dart Timer构造函数用法及代码示例
- Dart Timer用法及代码示例
- Dart Timeline用法及代码示例
- Dart TransformList.last用法及代码示例
- Dart TextTrackCueList.elementAt用法及代码示例
- Dart TextTrackCueList.length用法及代码示例
- Dart TouchList.elementAt用法及代码示例
- Dart TextTrackList.first用法及代码示例
- Dart TextTrackCueList.last用法及代码示例
- Dart TouchList.length用法及代码示例
- Dart TextTrackList.elementAt用法及代码示例
- Dart TextTrackList.length用法及代码示例
- Dart TransformList.elementAt用法及代码示例
- Dart TouchList.first用法及代码示例
- Dart TransformList.clear用法及代码示例
- Dart TransformList.length用法及代码示例
- Dart TextTrackList.last用法及代码示例
- Dart TextTrackCueList.first用法及代码示例
- Dart TransformList.first用法及代码示例
- Dart TouchList.last用法及代码示例
- Dart MapMixin.containsKey用法及代码示例
- Dart Iterator用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 cancel method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。