removeAccount method

  1. @override
Future<void> removeAccount(
  1. UserId id, {
  2. bool keepProfile = false,
})
override

Deletes the MyUser identified by the provided id from the accounts.

If keepProfile is true, then keeps the MyUser in the profiles.

Implementation

@override
Future<void> removeAccount(UserId id, {bool keepProfile = false}) async {
  Log.debug('removeAccount($id, keepProfile: $keepProfile)', '$runtimeType');

  if (!keepProfile) {
    profiles.removeWhere((e) => e.id == id);
  }

  await Future.wait([
    if (!keepProfile) _myUserProvider.delete(id),
    _credentialsProvider.delete(id),
  ]);
}