fix profile

This commit is contained in:
Sai Naw Wun
2020-10-11 02:17:23 +06:30
parent b0ce53f856
commit 32e6be2abd
42 changed files with 938 additions and 626 deletions

View File

@@ -62,7 +62,12 @@ class AuthServiceImp implements AuthService {
}
@override
Future<void> updateProfile(String newUserName) {
return authFb.updateProfile(newUserName);
Future<void> updateProfileName(String newUserName) {
return authFb.updateProfileName(newUserName);
}
@override
Future<void> updatePreferredCurrency(String currency) {
return authFb.updatePreferredCurrency(currency);
}
}