aadhaarValidate method

bool aadhaarValidate({
  1. required String content,
})

This Method will validate your content from Aadhaar Number Format. content Content is a Required parameter. Pass your inputed or that value which you want to compare with Aadhaar Number format.

Implementation

bool aadhaarValidate({required String content}) {
    if (content.length == 12) {
      return true;
    } else {
      return false;
    }
  }