deleteAccount method

Future<void> deleteAccount(
  1. MyUser myUser
)

Removes the myUser from both the profiles and accounts.

Implementation

Future<void> deleteAccount(MyUser myUser) async {
  await _auth.removeAccount(myUser.id);
}