operator + method
void
operator +(
- T value
Adds value to the set.
final s = Ref(<int>{});
s + 1; // -> {1}
Implementation
void operator +(T value) {
add(value);
}
Adds value to the set.
final s = Ref(<int>{});
s + 1; // -> {1}
void operator +(T value) {
add(value);
}