SubscriptionSubitem constructor

SubscriptionSubitem({
  1. String? id,
  2. String? description,
  3. int? quantity,
  4. int? priceCents,
  5. String? price,
  6. String? total,
  7. bool? recurrent,
  8. bool? destroy,
})

Implementation

SubscriptionSubitem({
  this.id,
  this.description,
  this.quantity,
  this.priceCents,
  this.price,
  this.total,
  this.recurrent,
  this.destroy,
});