Data constructor

Data({
  1. String? createdByUserName,
  2. String? updatedByUserName,
  3. String? createdBy,
  4. String? createdDate,
  5. String? updatedBy,
  6. String? updatedDate,
  7. int? id,
  8. String? orderId,
  9. String? organizationId,
  10. Store? store,
  11. String? customerName,
  12. CustomerDetails? customerDetails,
  13. String? status,
  14. String? dueDate,
  15. bool? archived,
  16. String? type,
  17. String? parentInvoiceId,
  18. String? mainOrderId,
  19. int? refundableAmount,
  20. Credit? credit,
  21. Credit? debit,
  22. Credit? balance,
  23. String? paymentDueDate,
  24. SaleDetail? saleDetail,
  25. String? paymentOrderId,
  26. List<OrderApprovalMapping>? orderApprovalMapping,
  27. String? transactionType,
  28. SaleExtendedDetails? saleExtendedDetails,
  29. CustomerDetails? soldToParty,
  30. CustomerDetails? billToParty,
  31. CustomerDetails? payerParty,
  32. CustomerDetails? soldByParty,
  33. List<Attachments>? attachments,
  34. String? paymentTransactionId,
  35. List<ActionList>? actionList,
  36. String? paymentDate,
  37. List<Details>? details,
  38. List<HeaderTags>? headerTags,
  39. Credit? totalPaymentCollected,
  40. bool? overdue,
  41. bool? canceled,
  42. bool? creditInvoice,
  43. bool? closed,
  44. bool? open,
  45. String? paymentStatus,
  46. bool? allowModifyPayment,
  47. String? invoiceNumber,
  48. String? ageing,
  49. bool? refundable,
})

Implementation

Data(
    {this.createdByUserName, this.updatedByUserName, this.createdBy, this.createdDate, this.updatedBy, this.updatedDate, this.id, this.orderId, this.organizationId, this.store, this.customerName, this.customerDetails, this.status, this.dueDate, this.archived, this.type, this.parentInvoiceId, this.mainOrderId, this.refundableAmount, this.credit, this.debit, this.balance, this.paymentDueDate, this.saleDetail, this.paymentOrderId, this.orderApprovalMapping, this.transactionType, this.saleExtendedDetails, this.soldToParty, this.billToParty, this.payerParty, this.soldByParty, this.attachments, this.paymentTransactionId, this.actionList, this.paymentDate, this.details, this.headerTags, this.totalPaymentCollected, this.overdue, this.canceled, this.creditInvoice, this.closed, this.open, this.paymentStatus, this.allowModifyPayment, this.invoiceNumber, this.ageing, this.refundable});