resetAsync method

Future<void> resetAsync()

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();
}