ManyToMany constructor

const ManyToMany({
  1. required Type targetEntity,
  2. JoinTable? joinTable,
  3. String? mappedBy,
  4. bool cascadeDelete = false,
  5. bool lazyLoad = true,
  6. bool createIndex = true,
})

Implementation

const ManyToMany({
  required this.targetEntity,
  this.joinTable,
  this.mappedBy,
  this.cascadeDelete = false,
  this.lazyLoad = true,
  this.createIndex = true,
});