removeList method

void removeList(
  1. int index
)

Removes a list from the board

Implementation

void removeList(int index) {
  if (index >= 0 && index < _lists.length) {
    _lists.removeAt(index);
    notifyListeners();
  }
}