add method

bool add(
  1. E value
)

Add a value to this Relationship

Attempting to add an existing value has no effect as this is a Set

Implementation

bool add(E value) {
  _addAll({value._key!});
  return true;
}