pause method

void pause()

Pause face detection (e.g. when the app is backgrounded).

Implementation

void pause() {
  if (_isClosed) return;
  _onPause();
}