resume method

void resume()

Resumes the scanning session from paused state.

Implementation

void resume() {
  if (_state != SessionState.paused) return;
  _setState(SessionState.active);
}