Input$ProductUpdateInput constructor

Input$ProductUpdateInput({
  1. String? externalId,
  2. String? name,
  3. String? sku,
  4. String? description,
  5. List<String>? descriptionList,
  6. List<Input$ProductSpecsInput>? specs,
  7. List<String>? tags,
  8. Input$PictureInput? picture,
  9. List<Input$PictureInput>? pictures,
  10. Input$MediaInput? media,
  11. String? ean,
  12. double? weight,
  13. String? price,
  14. List<Enum$ProductClassEnum>? classification,
  15. String? wholesalerPrice,
  16. String? factoryPrice,
  17. String? tax,
  18. List<Input$ProductTaxesInput>? taxes,
  19. List<String>? productAttributes,
  20. List<String>? barcodes,
  21. String? brand,
  22. List<String>? category,
})

Implementation

factory Input$ProductUpdateInput({
  String? externalId,
  String? name,
  String? sku,
  String? description,
  List<String>? descriptionList,
  List<Input$ProductSpecsInput>? specs,
  List<String>? tags,
  Input$PictureInput? picture,
  List<Input$PictureInput>? pictures,
  Input$MediaInput? media,
  String? ean,
  double? weight,
  String? price,
  List<Enum$ProductClassEnum>? classification,
  String? wholesalerPrice,
  String? factoryPrice,
  String? tax,
  List<Input$ProductTaxesInput>? taxes,
  List<String>? productAttributes,
  List<String>? barcodes,
  String? brand,
  List<String>? category,
}) =>
    Input$ProductUpdateInput._({
      if (externalId != null) r'externalId': externalId,
      if (name != null) r'name': name,
      if (sku != null) r'sku': sku,
      if (description != null) r'description': description,
      if (descriptionList != null) r'descriptionList': descriptionList,
      if (specs != null) r'specs': specs,
      if (tags != null) r'tags': tags,
      if (picture != null) r'picture': picture,
      if (pictures != null) r'pictures': pictures,
      if (media != null) r'media': media,
      if (ean != null) r'ean': ean,
      if (weight != null) r'weight': weight,
      if (price != null) r'price': price,
      if (classification != null) r'classification': classification,
      if (wholesalerPrice != null) r'wholesalerPrice': wholesalerPrice,
      if (factoryPrice != null) r'factoryPrice': factoryPrice,
      if (tax != null) r'tax': tax,
      if (taxes != null) r'taxes': taxes,
      if (productAttributes != null) r'productAttributes': productAttributes,
      if (barcodes != null) r'barcodes': barcodes,
      if (brand != null) r'brand': brand,
      if (category != null) r'category': category,
    });