addItem method

void addItem(
  1. String ref
)

Adds a ref to the itemList.

Implementation

void addItem(String ref) {
  itemList.add(ref);
}