fix logout issue

This commit is contained in:
tzw
2024-02-23 17:05:51 +06:30
parent 421bcf0a11
commit 5496bae681
23 changed files with 144 additions and 84 deletions

View File

@@ -25,11 +25,6 @@ class AuthServiceImp implements AuthService {
return authFb.signInWithPhoneNumber(smsCode);
}
@override
Future<void> signout() {
return authFb.signout();
}
@override
Stream<User?> getUserStream() {
return authFb.user();
@@ -64,4 +59,14 @@ class AuthServiceImp implements AuthService {
Future<void> updatePreferredCurrency(String currency) {
return authFb.updatePreferredCurrency(currency);
}
@override
Future<void> signoutEnd() {
return authFb.signoutEnd();
}
@override
Future<void> signoutStart() {
return authFb.signoutStart();
}
}