Settimeout Dart

[Solved] Settimeout Dart | Swift - Code Explorer | yomemimo.com
Question : settimeout dart

Answered by : santosh-pal

In addition to Timer mentioned by Chris, there is a Future-based API:
var future = new Future.delayed(const Duration(milliseconds: 10), doStuffCallback);
There is not yet direct support for cancelling a Future callback, but this works pretty well:
var future = new Future.delayed(const Duration(milliseconds: 10));
var subscription = future.asStream().listen(doStuffCallback);
// ...
subscription.cancel();
Hopefully, there will soon be a Stream version of Timer.repeating as well.

Source : | Last Update : Thu, 01 Apr 21

Answers related to settimeout dart

Code Explorer Popular Question For Swift