ProductUpdateOptions constructor

const ProductUpdateOptions({
  1. bool? active,
  2. String? defaultPrice,
  3. String? description,
  4. List<String>? expand,
  5. List<ProductFeaturesItem>? features,
  6. List<String>? images,
  7. Map<String, String>? metadata,
  8. String? name,
  9. PackageDimensions? packageDimensions,
  10. bool? shippable,
  11. String? statementDescriptor,
  12. String? taxCode,
  13. String? unitLabel,
  14. String? url,
})

Implementation

const ProductUpdateOptions({
  this.active,
  this.defaultPrice,
  this.description,
  this.expand,
  this.features,
  this.images,
  this.metadata,
  this.name,
  this.packageDimensions,
  this.shippable,
  this.statementDescriptor,
  this.taxCode,
  this.unitLabel,
  this.url,
});