ConstraintEntity constructor

ConstraintEntity({
  1. Map<String, Object?>? customFeatures,
  2. String? name,
  3. List<String>? referenceColumns,
  4. String? referenceTable,
  5. List<String>? tableColumns,
  6. String? tableName,
  7. String? type,
})

Implementation

ConstraintEntity({
  this.customFeatures,
  this.name,
  this.referenceColumns,
  this.referenceTable,
  this.tableColumns,
  this.tableName,
  this.type,
});