assign method

void assign(
  1. E item
)

Replaces all existing items of this list with item.

Clears the list and adds item.

Implementation

void assign(E item) {
  if (this is RxList) {
    (this as RxList<E>).value.clear();
  }
  add(item);
}