removeAt method
remove element by index in list and notify listeners
Implementation
void removeAt(int index) {
value.removeAt(index);
notifyListeners();
}
remove element by index in list and notify listeners
void removeAt(int index) {
value.removeAt(index);
notifyListeners();
}