PlanListData constructor

PlanListData(
  1. {num? id,
  2. String? title,
  3. String? type,
  4. String? identifier,
  5. num? trialPeriod,
  6. String? amount,
  7. num? status,
  8. num? duration,
  9. String? description,
  10. num? isTrail}
)

Implementation

PlanListData({
    this.id,
    this.title,
    this.type,
    this.identifier,
    this.trialPeriod,
    this.amount,
    this.status,
    this.duration,
    this.description,
    this.isTrail,});