ListElement constructor

ListElement({
  1. String? createdByUserName,
  2. String? updatedByUserName,
  3. String? createdDate,
  4. String? updatedBy,
  5. String? updatedDate,
  6. int? id,
  7. String? organizationId,
  8. CustomerDetails? customerDetails,
  9. String? status,
  10. String? dueDate,
  11. bool? archived,
  12. String? type,
  13. String? mainOrderId,
  14. double? refundableAmount,
  15. Balance? credit,
  16. Balance? debit,
  17. Balance? balance,
  18. String? paymentDueDate,
  19. String? transactionType,
  20. SaleExtendedDetails? saleExtendedDetails,
  21. bool? overdue,
  22. bool? canceled,
  23. bool? creditInvoice,
  24. bool? closed,
  25. bool? open,
  26. String? paymentStatus,
  27. bool? allowModifyPayment,
  28. String? invoiceNumber,
  29. String? ageing,
  30. bool? refundable,
})

Implementation

ListElement({
    this.createdByUserName,
    this.updatedByUserName,
    this.createdDate,
    this.updatedBy,
    this.updatedDate,
    this.id,
    this.organizationId,
    this.customerDetails,
    this.status,
    this.dueDate,
    this.archived,
    this.type,
    this.mainOrderId,
    this.refundableAmount,
    this.credit,
    this.debit,
    this.balance,
    this.paymentDueDate,
    this.transactionType,
    this.saleExtendedDetails,
    this.overdue,
    this.canceled,
    this.creditInvoice,
    this.closed,
    this.open,
    this.paymentStatus,
    this.allowModifyPayment,
    this.invoiceNumber,
    this.ageing,
    this.refundable,
});