Is there any way to get aadhar card verification in flutter app?

2.2k views Asked by At

I want to verify aadhar card number in a way like when a user enters his/her aadhar number OTP will be sent to the link mobile number with provided aadhar number. Is there any API or any way to achieve this functionality in flutter?

2

There are 2 answers

0
Tejaswini Dev On

Please try this regex

regex = “^[2-9]{1}[0-9]{3}\\s[0-9]{4}\\s[0-9]{4}$”;

0
mishalhaneef On

● Aadhar auth can be done in flutter! UIDAI provides an API with which you can do that . Go to uidai.gov.in and read documents related to "Aadhar Authentication Api" you will also need necessary demographic and biometric details for authentication.

● for more about how to integrate Adhar read this article LinkToArticle,

● or else you can use Verhoeff algorithm , this link will help you to get that validating the Aadhar card number in a application