resetAsync method
Empty/reset all of the directories asynchronously
This internally calls deleteAsync then createAsync to achieve the same effect.
Implementation
Future<void> resetAsync() async {
await deleteAsync();
await createAsync();
}
Empty/reset all of the directories asynchronously
This internally calls deleteAsync then createAsync to achieve the same effect.
Future<void> resetAsync() async {
await deleteAsync();
await createAsync();
}