VmpDto constructor

VmpDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. int? from,
  5. int? to,
  6. String? code,
  7. VmpGroupStubDto? vmpGroup,
  8. SamTextDto? name,
  9. SamTextDto? abbreviation,
  10. VtmDto? vtm,
  11. List<WadaDto> wadas = const [],
  12. List<VmpComponentDto> components = const [],
  13. List<CommentedClassificationDto> commentedClassifications = const [],
})

Returns a new VmpDto instance.

Implementation

VmpDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.from,
  this.to,
  this.code,
  this.vmpGroup,
  this.name,
  this.abbreviation,
  this.vtm,
  this.wadas = const [],
  this.components = const [],
  this.commentedClassifications = const [],
});