SubstanceDto constructor
SubstanceDto({
- required String id,
- String? rev,
- int? deletionDate,
- String? code,
- String? chemicalForm,
- SamTextDto? name,
- SamTextDto? note,
- List<
StandardSubstanceDto> standardSubstances = const [],
Returns a new SubstanceDto instance.
Implementation
SubstanceDto({
required this.id,
this.rev,
this.deletionDate,
this.code,
this.chemicalForm,
this.name,
this.note,
this.standardSubstances = const [],
});