remove method

  1. @override
bool remove(
  1. Object? value
)
override

Removes the first occurrence of value from this list.

Implementation

@override
bool remove(Object? value) => _wrappedList.remove(value);