replace method
Implementation
void replace(int index, T val) {
testMostRightNotifyChanged(() {
values.removeAt(index);
values.insert(index, val);
});
}
void replace(int index, T val) {
testMostRightNotifyChanged(() {
values.removeAt(index);
values.insert(index, val);
});
}