replaceAll method

void replaceAll(
  1. List<T> vals
)

Implementation

void replaceAll(List<T> vals) {
  testMostRightNotifyChanged(() {
    clear();
    values.addAll(vals);
  });
}