IngredientDto constructor

IngredientDto({
  1. int? from,
  2. int? to,
  3. int? rank,
  4. IngredientDtoTypeEnum? type,
  5. bool? knownEffect,
  6. String? strengthDescription,
  7. QuantityDto? strength,
  8. String? additionalInformation,
  9. SubstanceStubDto? substance,
})

Returns a new IngredientDto instance.

Implementation

IngredientDto({
  this.from,
  this.to,
  this.rank,
  this.type,
  this.knownEffect,
  this.strengthDescription,
  this.strength,
  this.additionalInformation,
  this.substance,
});