checkPhoneNumberLength function
Implementation
bool checkPhoneNumberLength(String strippedNumber, CountryDialCode? country) {
if (country == null) {
return false;
}
int length = strippedNumber.length;
return country.phoneLength.contains(length);
}