onARViewCreated method

void onARViewCreated(
  1. ARSessionManager s,
  2. ARObjectManager o,
  3. ARAnchorManager a
)

Implementation

void onARViewCreated(
  ARSessionManager s,
  ARObjectManager o,
  ARAnchorManager a,
) {
  session = s;
  objects = o;
  anchors = a;

  objects!.session = session;

  session!.onInitialize(
    showPlanes: false,
    showWorldOrigin: false,
    handleTaps: false,
    showAnimatedGuide: false,
  );
}