remove method

bool remove(
  1. Object? value
)

Implementation

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