Skip to content

Instantly share code, notes, and snippets.

@maherjaafar
Last active October 12, 2021 09:24
Show Gist options
  • Save maherjaafar/492be4e4c05c6416b33a5e9aceea246a to your computer and use it in GitHub Desktop.
Save maherjaafar/492be4e4c05c6416b33a5e9aceea246a to your computer and use it in GitHub Desktop.
Future.microTask()
Future.microtask(() async {
String? data;
data = await getString();
return data;
}).then((value) => print(value));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment