authentication/feature/google_signin #105
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "authentication/feature/google_signin"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -185,0 +206,4 @@
_latestCreds = userCredential;
final user = userCredential.user;
if (user.isNotNull) {
return _mapper(user!);
Maybe parsing the data into a model should be the responsibility of the model, not the data source?
Maybe add
fromFirebaseUser(..)
parser method toAccountModel
.