remove method

bool remove(
  1. Object? value, {
  2. bool notify = true,
})

Removes a value from this Relationship

Implementation

bool remove(Object? value, {bool notify = true}) {
  return _remove(value, notify: notify);
}