totalScanned method

int totalScanned()

Implementation

int totalScanned() {
  int total = 0;
  for (var element in collectStockList) {
    total += element.scannedQty;
  }
  return total;
}