hideCursorFor method

void hideCursorFor(
  1. Object owner
)

Hides the cursor if owner currently owns it; ignores the call otherwise.

Implementation

void hideCursorFor(Object owner) {
  if (_owner == owner) {
    _hideCursor();
    _owner = null;
  }
}