Data constructor

Data({
  1. CreditNote? invoice,
  2. CreditNote? creditNote,
  3. CreditNote? wallet,
  4. CreditNote? ctw,
  5. Customer? customer,
  6. Customer? organization,
  7. Cart? cart,
  8. CreditNote? order,
  9. Customer? party,
  10. CreditNote? subInvoice,
  11. List<EloadElement>? eload,
  12. String? userType,
  13. SellerPartyMinDetails? sellerPartyMinDetails,
  14. List<ConfigDetail>? configDetails,
  15. SpecialNumber? specialNumber,
})

Implementation

Data({
  this.invoice,
  this.creditNote,
  this.wallet,
  this.ctw,
  this.customer,
  this.organization,
  this.cart,
  this.order,
  this.party,
  this.subInvoice,
  this.eload,
  this.userType,
  this.sellerPartyMinDetails,
  this.configDetails,
  this.specialNumber,
});