deleteAsync method
Delete all of the directories asynchronously
This will remove all traces of this store from the user's device. Use with caution!
Implementation
Future<void> deleteAsync() async {
await resetAsync();
await _access.real.delete(recursive: true);
}