add update phone number and recovery email

This commit is contained in:
tzw
2025-01-14 17:10:10 +06:30
parent 21cf7a2517
commit ace3af1785
22 changed files with 1087 additions and 221 deletions

View File

@@ -16,8 +16,10 @@ class AuthServiceImp implements AuthService {
final AuthFb authFb;
@override
Future<AuthResult> sendSmsCodeToPhoneNumber(String phoneNumber) {
return authFb.sendSmsCodeToPhoneNumber(phoneNumber);
Future<AuthResult> sendSmsCodeToPhoneNumber(String phoneNumber,
{String? forceResendingToken}) {
return authFb.sendSmsCodeToPhoneNumber(phoneNumber,
forceResendingToken: forceResendingToken);
}
@override