isValid method
Implementation
bool isValid(){
if (identificationNumber == null || identificationNumber?.trim() == '') return false;
return true;
}
bool isValid(){
if (identificationNumber == null || identificationNumber?.trim() == '') return false;
return true;
}