OrderListDataItem constructor
OrderListDataItem({
- String? orderId,
- String? billType,
- String? orderNumber,
- String? totalItem,
- String? paymentMethod,
- String? subTotal,
- String? discount,
- String? tax,
- String? grandTotal,
- String? payable,
- Status? status,
- String? pickUpOptions,
- String? pickUpPriority,
- String? remarks,
- CreatedAtDateTime? createdAtDateTime,
Implementation
OrderListDataItem({
String? orderId,
String? billType,
String? orderNumber,
String? totalItem,
String? paymentMethod,
String? subTotal,
String? discount,
String? tax,
String? grandTotal,
String? payable,
Status? status,
String? pickUpOptions,
String? pickUpPriority,
String? remarks,
CreatedAtDateTime? createdAtDateTime,}){
_orderId = orderId;
_billType = billType;
_orderNumber = orderNumber;
_totalItem = totalItem;
_paymentMethod = paymentMethod;
_subTotal = subTotal;
_discount = discount;
_tax = tax;
_grandTotal = grandTotal;
_payable = payable;
_status = status;
_pickUpOptions = pickUpOptions;
_pickUpPriority = pickUpPriority;
_remarks = remarks;
_createdAtDateTime = createdAtDateTime;
}