scanIccid method
Implementation
Future<void> scanIccid() async {
final condition = currentScan;
switch (condition) {
case ScanType.collectStock:
validateScanning();
break;
case ScanType.starterKit:
await onCollectStockScan();
break;
default:
debugPrint("default");
}
}