targetBox static method

Box targetBox(
  1. ToOne toOne
)

Get access of the relation's target box.

Implementation

static Box targetBox(ToOne toOne) {
  toOne._verifyAttached();
  return toOne._box;
}