import 'package:wyatt_analysis/wyatt_analysis.dart'; Future main() async { /// Await async functions. await asyncFunction(); /// Use [unawaited] to indicate that a [Future] is intentionally not awaited. /// Otherwise you'll get a warning unawaited(asyncFunction()); } Future asyncFunction() { return Future.value('hello, world!'); }