Skip to content

Instantly share code, notes, and snippets.

@r3dm1ke
Created November 26, 2019 00:01
Show Gist options
  • Select an option

  • Save r3dm1ke/0192f42eee95c9eb4e4ceb2cc9a536c2 to your computer and use it in GitHub Desktop.

Select an option

Save r3dm1ke/0192f42eee95c9eb4e4ceb2cc9a536c2 to your computer and use it in GitHub Desktop.
Async/await in Dart
// Creating a time duration of 1 minute
const oneMinute = Duration(minutes: 1);
// ...
Future<void> printWithDelay(String msg) async {
// Wait for one minute
await Future.delayed(oneMinute);
print(msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment