static bool isPhoneNumberValid(String phoneNumber) { if (phoneNumber.length != 10) { return false; } return true; }