ManyToOne constructor

const ManyToOne({
  1. String? parentTable,
  2. required Type table,
  3. required String joinColumnName,
})

Implementation

const ManyToOne({
  this.parentTable,
  required this.table,
  required this.joinColumnName,
});