isIDCard method
是否匹配身份证号码
Implementation
bool isIDCard() {
if (this?.length == 15) {
return _matches(RegexConst.idCard15);
}
if (this?.length == 18) {
return _matches(RegexConst.idCard18);
}
return false;
}
是否匹配身份证号码
bool isIDCard() {
if (this?.length == 15) {
return _matches(RegexConst.idCard15);
}
if (this?.length == 18) {
return _matches(RegexConst.idCard18);
}
return false;
}