updateItem method

dynamic updateItem(
  1. int index,
  2. T newValue
)

Implementation

updateItem(int index, T newValue) {
  var list = dataList;
  list[index] = newValue;
  dataSubject.add(DataWrapper(list, null));
}