FdcDataApplyError constructor

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

Creates a FdcDataApplyError.

Implementation

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