removeList method
Removes a list from the board
Implementation
void removeList(int index) {
if (index >= 0 && index < _lists.length) {
_lists.removeAt(index);
notifyListeners();
}
}
Removes a list from the board
void removeList(int index) {
if (index >= 0 && index < _lists.length) {
_lists.removeAt(index);
notifyListeners();
}
}