isEmail property

bool get isEmail

判断字符串是否为邮箱

Implementation

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