How do you check if an async void method is completed in Dart? Technology Community › Category: Flutter › How do you check if an async void method is completed in Dart? 0 Vote Up Vote Down VietMX Staff asked 4 years ago Changing the return type to Future<void>. Future<void> save(Folder folder) async { ..... } Then you can do await save(...); or save().then(...);