ForeignKey constructor

ForeignKey(
  1. String parentName,
  2. List<String> parentColumns,
  3. List<String> childColumns,
  4. ForeignKeyAction onUpdate,
  5. ForeignKeyAction onDelete,
)

Implementation

ForeignKey(
  this.parentName,
  this.parentColumns,
  this.childColumns,
  this.onUpdate,
  this.onDelete,
);