Asynchrony support
Future<String> lookUpVersion() async => '1.0.0';
await lookUpVersion();
Future<void> checkVersion() async {
var version = await lookUpVersion();
// Do something with version
}await for (varOrType identifier in expression) {
// Executes each time the stream emits a value.
}Last updated