@@ -0,0 +1,5 @@
+bool isValidEmail(String email) {
+ return RegExp(
+ r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9]+\.[a-zA-Z]+")
+ .hasMatch(email);
+}