ForeignKeyInfo constructor

const ForeignKeyInfo({
  1. required String constraintName,
  2. required String fromTable,
  3. required String fromColumn,
  4. required String toTable,
  5. required String toColumn,
  6. String onUpdate = '',
  7. String onDelete = '',
})

Implementation

const ForeignKeyInfo({
  required this.constraintName,
  required this.fromTable,
  required this.fromColumn,
  required this.toTable,
  required this.toColumn,
  this.onUpdate = '',
  this.onDelete = '',
});