ProductCreateOptions constructor

const ProductCreateOptions({
  1. bool? active,
  2. ProductDefaultPriceData? defaultPriceData,
  3. String? description,
  4. List<String>? expand,
  5. List<ProductFeaturesItem>? features,
  6. String? id,
  7. List<String>? images,
  8. Map<String, String>? metadata,
  9. required String name,
  10. PackageDimensions? packageDimensions,
  11. bool? shippable,
  12. String? statementDescriptor,
  13. String? taxCode,
  14. ProductType? type,
  15. String? unitLabel,
  16. String? url,
})

Implementation

const ProductCreateOptions({
  this.active,
  this.defaultPriceData,
  this.description,
  this.expand,
  this.features,
  this.id,
  this.images,
  this.metadata,
  required this.name,
  this.packageDimensions,
  this.shippable,
  this.statementDescriptor,
  this.taxCode,
  this.type,
  this.unitLabel,
  this.url,
});