getTotalItemsQty static method
Implementation
static int getTotalItemsQty(Map<String, Itemlist> itemlists){
int totalItems = 0;
itemlists.forEach((key, itemlist) {
totalItems = totalItems + itemlist.getTotalItems();
});
return totalItems;
}