isEmail method
Returns whether this string is an email address or not.
Returns true
for an e-mail address.
この文字列がメールアドレスかどうかを返します。
メールアドレスの場合true
を返します。
Implementation
bool isEmail() {
return RegExp(
r"^[a-zA-Z0-9.a-zA-Z0-9.!#$%&'*+-/=?^_`{|}~]+@[a-zA-Z0-9_-]+\.[a-zA-Z_-]+")
.hasMatch(this);
}