Validate Email
static bool email(String value) { return new RegExp(_EMAIL_PATTERN).hasMatch(value); }