removeAccount method
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),
]);
}