Invoices constructor

Invoices({
  1. String? id,
  2. String? createdAt,
  3. String? no,
  4. double? price,
  5. String? currency,
  6. double? tax,
  7. double? productDiscount,
  8. double? cartDiscount,
  9. double? shippingPrice,
  10. double? cashOnDeliveryPrice,
  11. StoreDTO? store,
  12. List<TaxDTO>? taxDetails,
  13. void refund,
  14. String? symbol,
  15. double? discount,
  16. double? promoCodeDiscount,
  17. String? shippingURL,
})

Implementation

Invoices({
  this.id,
  this.createdAt,
  this.no,
  this.price,
  this.currency,
  this.tax,
  this.productDiscount,
  this.cartDiscount,
  this.shippingPrice,
  this.cashOnDeliveryPrice,
  this.store,
  this.taxDetails,
  this.refund,
  this.symbol,
  this.discount,
  this.promoCodeDiscount,
  this.shippingURL,
});