Data constructor

Data(
  1. {int? id,
  2. String? planId,
  3. String? title,
  4. String? identifier,
  5. String? amount,
  6. String? type,
  7. String? txnId,
  8. String? status,
  9. DateTime? startAt,
  10. DateTime? endAt,
  11. int? duration,
  12. String? description,
  13. String? planType,
  14. String? planLimitation}
)

Implementation

Data({
    this.id,
    this.planId,
    this.title,
    this.identifier,
    this.amount,
    this.type,
    this.txnId,
    this.status,
    this.startAt,
    this.endAt,
    this.duration,
    this.description,
    this.planType,
    this.planLimitation,
});