isValidLength method

bool isValidLength({
  1. PhoneNumberType? type,
})

validates a phone number by only checking its length

Implementation

bool isValidLength({PhoneNumberType? type}) =>
    Validator.validateWithLength(isoCode, nsn, type);