Product constructor

Product({
  1. String? id,
  2. String? object,
  3. bool? active,
  4. List<String>? attributes,
  5. String? caption,
  6. int? created,
  7. List<String>? deactivateOn,
  8. String? description,
  9. List<String>? images,
  10. bool? livemode,
  11. Map<String, dynamic>? metadata,
  12. String? name,
  13. PackageDimensions? packageDimensions,
  14. bool? shippable,
  15. String? type,
  16. int? updated,
  17. String? url,
  18. String? statementDescriptor,
  19. String? unitLabel,
})

Implementation

Product(
    {this.id,
    this.object,
    this.active,
    this.attributes,
    this.caption,
    this.created,
    this.deactivateOn,
    this.description,
    this.images,
    this.livemode,
    this.metadata,
    this.name,
    this.packageDimensions,
    this.shippable,
    this.type,
    this.updated,
    this.url,
    this.statementDescriptor,
    this.unitLabel});