isValid static method

PhoneResult isValid(
  1. String phoneNumber
)

Validates if an Ecuadorian phone number is valid in either local (0991234567) or international (+593991234567) notation.

phoneNumber Phone number to validate.

Returns a PhoneResult with the validation result.

Implementation

static PhoneResult isValid( String phoneNumber ) =>
  _evaluate(() => validateInternationalLocalPhone( phoneNumber ));