recordAnchorSeen method

void recordAnchorSeen(
  1. String anchorKey
)

Called by DigiaAnchor the first time an anchor key mounts. Recorded against the currently-set screen name (see setCurrentScreen) — anchors require one server-side, so this is skipped if no screen is set yet.

Implementation

void recordAnchorSeen(String anchorKey) {
  _componentRegistry.recordAnchor(anchorKey, _currentScreen);
}