remove method

void remove(
  1. int index
)

Implementation

void remove(int index) {
  _value.removeAt(index);

  notifyListeners();
}