isEmail static method

bool isEmail(
  1. String value
)

Implementation

static bool isEmail(String value) {
  return _emailRegex.hasMatch(value);
}