isValidEmail static method

bool isValidEmail(
  1. String email
)

Validate email format.

Checks if the provided string matches standard email format using regex.

Parameters

  • email: The email address to validate

Returns

true if the email format is valid, false otherwise.

Implementation

static bool isValidEmail(String email) {
  return _emailRegex.hasMatch(email);
}