VirtualIngredientDto constructor

VirtualIngredientDto({
  1. int? from,
  2. int? to,
  3. int? rank,
  4. VirtualIngredientDtoTypeEnum? type,
  5. StrengthRangeDto? strengthRange,
  6. SubstanceStubDto? substance,
})

Returns a new VirtualIngredientDto instance.

Implementation

VirtualIngredientDto({
  this.from,
  this.to,
  this.rank,
  this.type,
  this.strengthRange,
  this.substance,
});