PlanProductInlineProductParams constructor

const PlanProductInlineProductParams({
  1. bool? active,
  2. String? id,
  3. Map<String, String>? metadata,
  4. required String name,
  5. String? statementDescriptor,
  6. String? taxCode,
  7. String? unitLabel,
})

inline_product_params

The product whose pricing the created plan will represent. This can either be the ID of an existing product, or a dictionary containing fields used to create a [service product](https://stripe.com/docs/api#product_object-type).

Implementation

const PlanProductInlineProductParams({
  this.active,
  this.id,
  this.metadata,
  required this.name,
  this.statementDescriptor,
  this.taxCode,
  this.unitLabel,
});