removeAt method

void removeAt(
  1. int index
)

Remove an entry in specific index

Implementation

void removeAt(int index) {
  _list.removeAt(index);
  _fireWatchers();
}