ForeignKey constructor

const ForeignKey({
  1. required String column,
  2. required String referencedTable,
  3. required String referencedColumn,
  4. ForeignKeyAction? onDelete,
  5. ForeignKeyAction? onUpdate,
  6. String? name,
})

Implementation

const ForeignKey({
  required this.column,
  required this.referencedTable,
  required this.referencedColumn,
  this.onDelete,
  this.onUpdate,
  this.name,
});