ModelUpdate constructor

ModelUpdate({
  1. String? nameDe,
  2. String? nameEn,
  3. String? nameFr,
  4. String? nameIt,
  5. ModelStatus? status,
  6. required String description,
  7. String? descriptionDe,
  8. String? descriptionEn,
  9. String? descriptionFr,
  10. String? descriptionIt,
  11. int? number,
  12. String? siteUrlDe,
  13. String? siteUrlEn,
  14. String? siteUrlFr,
  15. String? siteUrlIt,
  16. bool? scaleable,
  17. String? sku,
  18. double? price,
  19. required String? priceCurrency,
  20. bool? verticalPlacement,
})

Returns a new ModelUpdate instance.

Implementation

ModelUpdate({
  this.nameDe,
  this.nameEn,
  this.nameFr,
  this.nameIt,
  this.status,
  required this.description,
  this.descriptionDe,
  this.descriptionEn,
  this.descriptionFr,
  this.descriptionIt,
  this.number,
  this.siteUrlDe,
  this.siteUrlEn,
  this.siteUrlFr,
  this.siteUrlIt,
  this.scaleable,
  this.sku,
  this.price,
  required this.priceCurrency,
  this.verticalPlacement,
});