replaceAll method
replaceAll method.
Implementation
void replaceAll(List<T> newItems) {
throwIfDisposed('replaceAll');
value = List<T>.from(newItems); // Defensive copy
}
replaceAll method.
void replaceAll(List<T> newItems) {
throwIfDisposed('replaceAll');
value = List<T>.from(newItems); // Defensive copy
}