import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { const MyApp({Key key}) : super(key: key); @override Widget build(BuildContext context) { return Container(); } } Future hello() async { // <- keyword } Stream helloStream() async* { // <- keyword } Iterable helloIter() sync* { // <- keyword }