Adds an item to a specific list
void addItem(int listIndex, Widget item) { if (listIndex >= 0 && listIndex < _lists.length) { _lists[listIndex].add(item); notifyListeners(); } }