removeAt method

void removeAt(
  1. int index
)

remove element by index in list and notify listeners

Implementation

void removeAt(int index) {
  value.removeAt(index);
  notifyListeners();
}