validateEmail method
Returns whether this
string is a valid email address
Implementation
bool validateEmail() {
return RegexUtils.check(this, RegexUtils.email);
}
Returns whether this
string is a valid email address
bool validateEmail() {
return RegexUtils.check(this, RegexUtils.email);
}