remove method

bool remove(
  1. Object? value
)

Implementation

bool remove(Object? value) {
  final list = this.value;
  final result = list.remove(value);
  set(list, force: true);
  return result;
}