OrderEntity constructor
OrderEntity({
- required String? appId,
- String? customerId,
- String? name,
- String? email,
- String? shipStreet1,
- String? shipStreet2,
- String? shipCity,
- String? shipState,
- String? postcode,
- String? country,
- bool? invoiceSame,
- String? invoiceStreet1,
- String? invoiceStreet2,
- String? invoiceCity,
- String? invoiceState,
- String? invoicePostcode,
- String? invoiceCountry,
- List<
OrderItemEntity> ? products, - double? totalPrice,
- String? currency,
- String? paymentReference,
- String? shipmentReference,
- String? deliveryReference,
- String? paymentNote,
- String? shipmentNote,
- String? deliveryNote,
- int? status,
- String? timeStamp,
Implementation
OrderEntity({
required this.appId,
this.customerId,
this.name,
this.email,
this.shipStreet1,
this.shipStreet2,
this.shipCity,
this.shipState,
this.postcode,
this.country,
this.invoiceSame,
this.invoiceStreet1,
this.invoiceStreet2,
this.invoiceCity,
this.invoiceState,
this.invoicePostcode,
this.invoiceCountry,
this.products,
this.totalPrice,
this.currency,
this.paymentReference,
this.shipmentReference,
this.deliveryReference,
this.paymentNote,
this.shipmentNote,
this.deliveryNote,
this.status,
this.timeStamp,
});