chat_app_live_stream
chat_app_live_stream copied to clipboard
small issue in the code
signInWithEmailAndPassword cant be assigned to FirebaseUser directly. Need to do another call like this:
FirebaseUser user = (await _auth.signInWithEmailAndPassword(
email: email,
password: password,
)).user;
But overall i love your code examples. Thanks for supporting the community.