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

@@ -4,6 +4,11 @@ class AuthResult {
AuthStatus? authStatus;
String? authErrorCode;
String? authErrorMsg;
String? forceResendingToken;
AuthResult({this.authStatus, this.authErrorCode, this.authErrorMsg});
AuthResult(
{this.authStatus,
this.authErrorCode,
this.authErrorMsg,
this.forceResendingToken});
}