add method
Implementation
bool add(E value) {
final modifiedValue = this.value;
final result = modifiedValue.add(value);
this.value = modifiedValue;
return result;
}
bool add(E value) {
final modifiedValue = this.value;
final result = modifiedValue.add(value);
this.value = modifiedValue;
return result;
}