isEmail property

bool get isEmail

Checks if string is email

Implementation

bool get isEmail {
  return RegExp(r'^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$').hasMatch(this);
}