I need to query my Firebase Authentication store by email address and get the users (email address/login provider) associated that address (if any) it in my Flutter app.
This email will not be the current user's email, but an address they type in.
FirebaseAuth.instance doesn't have any functionality to do this. I have a feeling that it might be because the client shouldn't have access to the info of all users associated with your app.
Is what I'm trying to do possible?