static bool isValidPhone(String? phone) { return phone != null && phone.isNotEmpty && Regs.phone.hasMatch(phone); }