remove method
Removes a value from the iterable atom
Implementation
@override
void remove(T value) {
set(this.value.where((element) => element != value));
}
Removes a value from the iterable atom
@override
void remove(T value) {
set(this.value.where((element) => element != value));
}