errorMessage property

String? get errorMessage

Implementation

String? get errorMessage {
  if (isValid || isPure) return null;
  if (displayError == EmailError.empty) return 'El campo es obligatorio';
  if (displayError == EmailError.format) {
    return 'No tiene formato de correo electronico';
  }

  return null;
}