removeBatchItem method

void removeBatchItem(
  1. int index
)

Removes an item from batch scan list by index.

Implementation

void removeBatchItem(int index) {
  if (index >= 0 && index < _batchResults.length) {
    _batchResults.removeAt(index);
    _safeNotifyListeners();
  }
}