NmpDto constructor

NmpDto({
  1. required String id,
  2. String? rev,
  3. int? deletionDate,
  4. int? from,
  5. int? to,
  6. String? code,
  7. String? productId,
  8. String? category,
  9. String? commercialStatus,
  10. SamTextDto? name,
  11. SamTextDto? producer,
  12. SamTextDto? distributor,
})

Returns a new NmpDto instance.

Implementation

NmpDto({
  required this.id,
  this.rev,
  this.deletionDate,
  this.from,
  this.to,
  this.code,
  this.productId,
  this.category,
  this.commercialStatus,
  this.name,
  this.producer,
  this.distributor,
});