isValidEmail static method

bool isValidEmail(
  1. String email
)

Implementation

static bool isValidEmail(String email) {
  String pattern =
      r'^[a-zA-Z0-9.a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$';
  RegExp regex = RegExp(pattern);
  return regex.hasMatch(email);
}