run static method
- void callback(
Runs the given callback
asynchronously as soon as possible.
This function is equivalent to new Timer(Duration.zero, callback)
.
Example:
Timer.run(() => print('timer run'));
Implementation
static void run(void Function() callback) {
new Timer(Duration.zero, callback);
}