apply method
- List<
E> list
Apply this change record to list
.
Implementation
void apply(List<E> list) {
list
..removeRange(index, index + removed.length)
..insertAll(index, object.getRange(index, index + addedCount));
}
Apply this change record to list
.
void apply(List<E> list) {
list
..removeRange(index, index + removed.length)
..insertAll(index, object.getRange(index, index + addedCount));
}