JoinColumn constructor

const JoinColumn({
  1. required String name,
  2. String referencedColumn = 'id',
  3. bool nullable = false,
})

Implementation

const JoinColumn({
  required this.name,
  this.referencedColumn = 'id',
  this.nullable = false,
});