ForeignKeyRef constructor

const ForeignKeyRef(
  1. String table, {
  2. String? column,
  3. String onDelete = 'NO ACTION',
  4. String onUpdate = 'NO ACTION',
})

Implementation

const ForeignKeyRef(
  this.table, {
  this.column,
  this.onDelete = 'NO ACTION',
  this.onUpdate = 'NO ACTION',
});