ValidationFailure2 constructor

ValidationFailure2({
  1. String? propertyName,
  2. String? errorMessage,
  3. dynamic attemptedValue,
  4. dynamic customState,
  5. Severity? severity,
  6. String? errorCode,
  7. Map<String, dynamic>? formattedMessagePlaceholderValues,
})

Implementation

ValidationFailure2({
  this.propertyName,
  this.errorMessage,
  this.attemptedValue,
  this.customState,
  this.severity,
  this.errorCode,
  this.formattedMessagePlaceholderValues,
});