Removes a value from the list.
bool remove( T value, { bool doNotifyListeners = true, }) { final result = _value.remove(value); if (doNotifyListeners) { notifyListeners(); } return result; }