checkEmail property

bool checkEmail

Implementation

bool get checkEmail {
  final RegExp _regexEmail = RegExp(r"""^[\w-\.]+@([\w-]+\.)+[\w-]{2,4}$""");
  return _regexEmail.hasMatch(this);
}