Check string is valid email.
bool email(String str) { RegExp reg = RegExp(_Regex().email); return reg.hasMatch(str); }