Let's say I've a user id
String uid = "1234abcdefgh890";
Now, I'd want to get a FirebaseUser
using this uid, how do I do that?
FirebaseAuth auth = FirebaseAuth.instance;
FirebaseUser user = (await auth.signInWithXXX(uid)).user; // is there any method like this
How can I get the FirebaseUser
then?