OrderData constructor
OrderData({
- String? orderId,
- String? orderDate,
- String? pickupLocation,
- String? channelId,
- String? comment,
- String? billingCustomerName,
- String? billingLastName,
- String? billingAddress,
- String? billingAddress2,
- String? billingCity,
- String? billingPincode,
- String? billingState,
- String? billingCountry,
- String? billingEmail,
- String? billingPhone,
- bool? shippingIsBilling,
- String? shippingCustomerName,
- String? shippingLastName,
- String? shippingAddress,
- String? shippingAddress2,
- String? shippingCity,
- String? shippingPincode,
- String? shippingCountry,
- String? shippingState,
- String? shippingEmail,
- String? shippingPhone,
- List<
OrderItem> ? orderItems, - String? paymentMethod,
- int? shippingCharges,
- int? giftwrapCharges,
- int? transactionCharges,
- int? totalDiscount,
- int? subTotal,
- int? length,
- int? breadth,
- int? height,
- double? weight,
Implementation
OrderData({
this.orderId,
this.orderDate,
this.pickupLocation,
this.channelId,
this.comment,
this.billingCustomerName,
this.billingLastName,
this.billingAddress,
this.billingAddress2,
this.billingCity,
this.billingPincode,
this.billingState,
this.billingCountry,
this.billingEmail,
this.billingPhone,
this.shippingIsBilling,
this.shippingCustomerName,
this.shippingLastName,
this.shippingAddress,
this.shippingAddress2,
this.shippingCity,
this.shippingPincode,
this.shippingCountry,
this.shippingState,
this.shippingEmail,
this.shippingPhone,
this.orderItems,
this.paymentMethod,
this.shippingCharges,
this.giftwrapCharges,
this.transactionCharges,
this.totalDiscount,
this.subTotal,
this.length,
this.breadth,
this.height,
this.weight,
});