MmRelationalIntegrityCheckData constructor

MmRelationalIntegrityCheckData({
  1. String? parentName,
  2. String? childName,
  3. String? parentIdAttr,
  4. String? childIdAttr,
  5. List<MmOrphanedRecord> records = const [],
})

Returns a new MmRelationalIntegrityCheckData instance.

Implementation

MmRelationalIntegrityCheckData({
  this.parentName,
  this.childName,
  this.parentIdAttr,
  this.childIdAttr,
  this.records = const [],
});