StandardSubstanceDto constructor

StandardSubstanceDto({
  1. String? code,
  2. StandardSubstanceDtoTypeEnum? type,
  3. SamTextDto? name,
  4. SamTextDto? definition,
  5. String? url,
})

Returns a new StandardSubstanceDto instance.

Implementation

StandardSubstanceDto({
  this.code,
  this.type,
  this.name,
  this.definition,
  this.url,
});