ForeignKeySnapshotRef constructor

const ForeignKeySnapshotRef({
  1. required String referencedTable,
  2. required String referencedColumn,
  3. String? onDelete,
  4. String? onUpdate,
})

Creates a snapshot of a foreign key reference.

Implementation

const ForeignKeySnapshotRef({
  required this.referencedTable,
  required this.referencedColumn,
  this.onDelete,
  this.onUpdate,
});