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