ManyToOne constructor

const ManyToOne({
  1. FetchType fetch = FetchType.eager,
  2. List<CascadeType> cascade = const [],
  3. bool optional = false,
})

Implementation

const ManyToOne({
  this.fetch = FetchType.eager,
  this.cascade = const [],
  this.optional = false,
});