CreateProductRequest constructor
CreateProductRequest({
- String? id,
- required String name,
- bool active = true,
- String? description,
- Map<
String, dynamic> ? metadata, - Map<
String, dynamic> ? defaultPriceData, - List<
Map< ? features,String, dynamic> > - List<
String> ? images, - Map<
String, dynamic> ? packageDimensions, - bool? shippable,
- String? statementDescriptor,
- String? taxCode,
- String? unitLabel,
- String? url,
Implementation
CreateProductRequest({
this.id,
required this.name,
this.active = true,
this.description,
this.metadata,
this.defaultPriceData,
this.features,
this.images,
this.packageDimensions,
this.shippable,
this.statementDescriptor,
this.taxCode,
this.unitLabel,
this.url,
});