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