itemsFor method

Map<String, T>? itemsFor(
  1. int slotCount
)

Item list for given slotCount

Implementation

Map<String, T>? itemsFor(int slotCount) {
  return _items[slotCount] == null ? null : Map.from(_items[slotCount]!);
}