Datum constructor

Datum({
  1. String? planid,
  2. String? planname,
  3. String? plantype,
  4. String? category,
  5. dynamic description,
  6. String? planinterval,
  7. String? planstatus,
  8. int? trialperioddays,
  9. String? region,
  10. List? country,
  11. List? paymentoptions,
  12. int? graceperiod,
  13. int? billbeforedays,
  14. dynamic exclusionlist,
  15. dynamic plantag,
  16. String? quality,
  17. int? devicelimit,
  18. int? concurrencylimit,
  19. List? availabilityset,
  20. int? weight,
  21. String? initiatedby,
  22. String? updatedby,
  23. String? updatedon,
  24. String? created,
  25. String? picture,
  26. int? amount,
  27. String? currency,
})

Implementation

Datum({
  this.planid,
  this.planname,
  this.plantype,
  this.category,
  this.description,
  this.planinterval,
  this.planstatus,
  this.trialperioddays,
  this.region,
  this.country,
  this.paymentoptions,
  this.graceperiod,
  this.billbeforedays,
  this.exclusionlist,
  this.plantag,
  this.quality,
  this.devicelimit,
  this.concurrencylimit,
  this.availabilityset,
  this.weight,
  this.initiatedby,
  this.updatedby,
  this.updatedon,
  this.created,
  this.picture,
  this.amount,
  this.currency,
});