isValidItalianCF method
Implementation
bool isValidItalianCF() {
RegExp regExp = RegExp(r'^[A-Za-z]{6}\d{2}[ABCDEHLMPRST]\d{2}[A-Za-z]\d{3}[A-Za-z]$');
return regExp.hasMatch(this);
}
bool isValidItalianCF() {
RegExp regExp = RegExp(r'^[A-Za-z]{6}\d{2}[ABCDEHLMPRST]\d{2}[A-Za-z]\d{3}[A-Za-z]$');
return regExp.hasMatch(this);
}