Skip to content

Instantly share code, notes, and snippets.

@HaradaKumiko
Created February 18, 2022 07:53
Show Gist options
  • Save HaradaKumiko/aa3b9d10c2c753b93d76410c5d8ef2a1 to your computer and use it in GitHub Desktop.
Save HaradaKumiko/aa3b9d10c2c753b93d76410c5d8ef2a1 to your computer and use it in GitHub Desktop.
Future<void> prosesOrder() {
return Future.delayed(
const Duration(seconds: 2),
() => print('Large Latte'),
);
}
void main() {
prosesOrder();
print('Mengambil order...');
}
@HaradaKumiko
Copy link
Author

Output
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment