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

990

Solution 1

Please try this regex

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

Solution 2

● 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

Share:
990
Harsh Bhalala
Author by

Harsh Bhalala

Updated on January 02, 2023

Comments

  • Harsh Bhalala
    Harsh Bhalala over 1 year

    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?