I well receive the mail from Firebase for the verification of my mail. I well click on the link received, but it is always returning false in my code for .emailVerified. What 's wrong ?
void verifyEmail() async {
print(FirebaseAuth.instance.currentUser!.email);
await FirebaseAuth.instance.currentUser!.reload;
bool emailVerified = await FirebaseAuth.instance.currentUser!.emailVerified;
print(emailVerified);
}