bool remove(Object? value) { final modifiedValue = this.value; final result = modifiedValue.remove(value); this.value = modifiedValue; return result; }