SubstanceStubDto constructor

SubstanceStubDto({
  1. String? id,
  2. String? code,
  3. String? chemicalForm,
  4. SamTextDto? name,
  5. SamTextDto? note,
  6. List<StandardSubstanceDto> standardSubstances = const [],
})

Returns a new SubstanceStubDto instance.

Implementation

SubstanceStubDto({
  this.id,
  this.code,
  this.chemicalForm,
  this.name,
  this.note,
  this.standardSubstances = const [],
});