deleteAccount method
Deletes the account from the server and clears the cache.
This will log the user out, and delete all data from the device.
The user will have to create a new account.
Implementation
Future<void> deleteAccount() async {
_assertLoggedIn();
await controller.deleteUser();
await clearCache();
}