2020-09-04 01:42:58 +06:30
|
|
|
import 'auth_status.dart';
|
|
|
|
|
|
|
|
|
|
class AuthResult {
|
2021-09-10 14:27:38 +06:30
|
|
|
AuthStatus? authStatus;
|
|
|
|
|
String? authErrorCode;
|
|
|
|
|
String? authErrorMsg;
|
2025-01-14 17:10:10 +06:30
|
|
|
String? forceResendingToken;
|
2020-09-04 01:42:58 +06:30
|
|
|
|
2025-01-14 17:10:10 +06:30
|
|
|
AuthResult(
|
|
|
|
|
{this.authStatus,
|
|
|
|
|
this.authErrorCode,
|
|
|
|
|
this.authErrorMsg,
|
|
|
|
|
this.forceResendingToken});
|
2020-09-04 01:42:58 +06:30
|
|
|
}
|