String? tryValidatePhone(String? phone) { try { return validatePhone(phone); } catch (e) { return null; } }