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;
|
2020-09-04 01:42:58 +06:30
|
|
|
|
|
|
|
|
AuthResult({this.authStatus, this.authErrorCode, this.authErrorMsg});
|
|
|
|
|
}
|