Created
July 13, 2021 13:31
-
-
Save inialdan/a5b5f7aeb38bea3a57de3c2c36925778 to your computer and use it in GitHub Desktop.
Dart Async
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'dart:async'; | |
void main(List<String> args) { | |
print("Starting"); | |
var timer = Timer(Duration(seconds: -3), ()=>print("Timer completed")); | |
print("Finished"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment