hasOrderItems method
Implementation
bool hasOrderItems() {
if (this.orderItemSearchData != null &&
this.orderItemSearchData.orderItems != null &&
this.orderItemSearchData.orderItems.length > 0) {
return true;
}
return false;
}
bool hasOrderItems() {
if (this.orderItemSearchData != null &&
this.orderItemSearchData.orderItems != null &&
this.orderItemSearchData.orderItems.length > 0) {
return true;
}
return false;
}