OneToMany constructor

const OneToMany({
  1. FetchType fetch = FetchType.lazy,
  2. List<CascadeType> cascade = const [],
  3. String? mappedBy,
})

Implementation

const OneToMany({
  this.fetch = FetchType.lazy,
  this.cascade = const [],
  this.mappedBy,
});