addOrder method

void addOrder(
  1. String orderFieldName,
  2. OrderType orderType
)

Implementation

void addOrder(String orderFieldName, OrderType orderType) {
  OrderStruct orderStruct = OrderStruct(orderFieldName, orderType);
  _orderStructList.add(orderStruct);
}