getBatchItem method

BatchItem getBatchItem(
  1. int index
)

Gets the BatchItem at the given index.

Implementation

BatchItem getBatchItem(int index) {
  final slot = _requireSlot(index);
  return _batchItems[slot];
}