Price constructor

Price({
  1. bool? active,
  2. String? currency,
  3. String? id,
  4. Map<String, dynamic>? metadata,
  5. String? product,
  6. int? unitAmount,
})

Implementation

Price({
  this.active,
  this.currency,
  this.id,
  this.metadata,
  this.product,
  this.unitAmount,
});