Datum constructor

Datum({
  1. dynamic purchaseid,
  2. String? subscriberid,
  3. String? objectid,
  4. String? objecttype,
  5. dynamic objecttitle,
  6. String? purchasetype,
  7. int? amount,
  8. String? currency,
  9. String? invoiceid,
  10. int? paymentid,
  11. String? expiry,
  12. String? purchasestatus,
  13. dynamic couponid,
  14. String? availabilityid,
  15. String? initiatedby,
  16. String? updatedby,
  17. String? updatedon,
  18. String? created,
})

Implementation

Datum({
  this.purchaseid,
  this.subscriberid,
  this.objectid,
  this.objecttype,
  this.objecttitle,
  this.purchasetype,
  this.amount,
  this.currency,
  this.invoiceid,
  this.paymentid,
  this.expiry,
  this.purchasestatus,
  this.couponid,
  this.availabilityid,
  this.initiatedby,
  this.updatedby,
  this.updatedon,
  this.created,
});