We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The field emailVerified present in the User object returned by Parse Server is never existing here in the ParseUser class.
emailVerified
How can we check that the email is verified?
The text was updated successfully, but these errors were encountered:
Hi @thierry-tct
Try this:
final currentUser = await ParseUser.currentUser() as ParseUser; print('EmailVerified: ${currentUser.get("emailVerified")}');
Value can be null, careful when making validations
Sorry, something went wrong.
@RodrigoSMarques Thanks much. That works perfectly.
@thierry-tct Version 20 released today has a new method for verifying:
final currentUser = await ParseUser.currentUser() as ParseUser; print('EmailVerified: ${currentUser.emailVerified}');
No branches or pull requests
The field
emailVerified
present in the User object returned by Parse Server is never existing here in the ParseUser class.How can we check that the email is verified?
The text was updated successfully, but these errors were encountered: