detach method

void detach(
  1. M3ESearchAnchorHandle anchor
)

Detaches this controller from anchor when it is the current handle.

Implementation

void detach(M3ESearchAnchorHandle anchor) {
  if (_anchor == anchor) {
    _anchor = null;
  }
}