initiateAccountDeletionFlow function
Future<AuthAccountDeletionInitiated>
initiateAccountDeletionFlow({
- required AuthStore store,
- required PasswordHasher passwordHasher,
- required String userId,
- required String password,
Initiates an account deletion flow.
Implementation
Future<AuthAccountDeletionInitiated> initiateAccountDeletionFlow({
required AuthStore store,
required PasswordHasher passwordHasher,
required String userId,
required String password,
}) async {
return initiateAccountDeletion(
store: store,
passwordHasher: passwordHasher,
userId: userId,
password: password,
);
}