Validates the given value as an email.
value
Returns an error message if validation fails, or null if valid.
null
String? validateEmail(String? value) => Validators.validate(value, ValidationRules.email);