ForeignKeyConstraint constructor

const ForeignKeyConstraint(
  1. String? name,
  2. String srcColumn,
  3. String table,
  4. String column,
  5. ForeignKeyAction onDelete,
  6. ForeignKeyAction onUpdate,
)

Implementation

const ForeignKeyConstraint(
    super.name, this.srcColumn, this.table, this.column, this.onDelete, this.onUpdate);