ForeingkeyRef constructor

const ForeingkeyRef({
  1. required String table,
  2. required String column,
  3. ForeingkeyActions? foreingKeyOnDelete,
  4. ForeingkeyActions? foreingKeyOnUpdate,
})

Implementation

const ForeingkeyRef({
  required this.table,
  required this.column,
  this.foreingKeyOnDelete,
  this.foreingKeyOnUpdate,
});