ForeignKey constructor
const
ForeignKey({
- required String column,
- required String referencedTable,
- required String referencedColumn,
- ForeignKeyAction? onDelete,
- ForeignKeyAction? onUpdate,
- String? name,
Implementation
const ForeignKey({
required this.column,
required this.referencedTable,
required this.referencedColumn,
this.onDelete,
this.onUpdate,
this.name,
});