BackupDiffEntry constructor

const BackupDiffEntry({
  1. required String entityType,
  2. required String entityId,
  3. required BackupDiffAction action,
  4. required String fieldName,
  5. dynamic oldValue,
  6. dynamic newValue,
  7. String? label,
})

Implementation

const BackupDiffEntry({
  required this.entityType,
  required this.entityId,
  required this.action,
  required this.fieldName,
  this.oldValue,
  this.newValue,
  this.label,
});