addItem method

void addItem(
  1. dynamic item
)

Implementation

void addItem(dynamic item) {
  _items.add(item);
  add(_items);
}