assign method
void
assign(
- E item
Replaces all existing items of this list with item
Implementation
void assign(E item) {
// if (this is RxSet) {
// (this as RxSet)._value;
// }
clear();
add(item);
}