email<T> static method
when valid
- value is null
- value is an email
Implementation
static FormeValidator<T> email<T>({String errorText = ''}) {
return pattern(emailPattern, errorText: errorText);
}
when valid
static FormeValidator<T> email<T>({String errorText = ''}) {
return pattern(emailPattern, errorText: errorText);
}