PlanPrice constructor

PlanPrice({
  1. String? createdAt,
  2. String? currency,
  3. String? id,
  4. String? planId,
  5. String? updatedAt,
  6. int? valueCents,
})

Implementation

PlanPrice({
  this.createdAt,
  this.currency,
  this.id,
  this.planId,
  this.updatedAt,
  this.valueCents,
});