验证邮箱
static bool isEmail(String? email) { if (email?.isEmpty ?? true) return false; return email!.isEmail; }