FdcValidationError constructor

const FdcValidationError({
  1. required String message,
  2. String? fieldName,
  3. int? recordId,
  4. String? code,
})

Creates a FdcValidationError.

Implementation

const FdcValidationError({
  required this.message,
  this.fieldName,
  this.recordId,
  this.code,
});