OrderDTO constructor

OrderDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. OrderStatus? status,
  7. String? type,
  8. bool? isPaid,
  9. bool? isTest,
  10. String? customerNote,
  11. String? storeNote,
  12. String? paymentMethod,
  13. StoreDTO? store,
  14. List<CampaignDTO>? campaigns,
  15. Customer? customer,
  16. AddressDTO? billingAddress,
  17. AddressDTO? shippingAddress,
  18. List<Items>? items,
  19. List<Invoices>? invoices,
  20. String? deliveryDate,
})

Implementation

OrderDTO({
  super.id,
  super.createdAt,
  super.updatedAt,
  super.isActive,
  super.isDeleted,
  this.status,
  this.type,
  this.isPaid,
  this.isTest,
  this.customerNote,
  this.storeNote,
  this.paymentMethod,
  this.store,
  this.campaigns,
  this.customer,
  this.billingAddress,
  this.shippingAddress,
  this.items,
  this.invoices,
  this.deliveryDate,
});