errorMessage property

String? get errorMessage

Implementation

String? get errorMessage {
  if (isValid || isPure) return null;
  if (displayError == OtpCodeError.empty) return 'El campo es obligatorio';
  if (displayError == OtpCodeError.invalidLength) {
    return 'Debes ingresar los $length dígitos';
  }

  return null;
}