resume method

void resume()

Resumes the engine from a paused state.

Implementation

void resume() {
  if (_status == ProcessingStatus.paused) {
    _updateStatus(ProcessingStatus.processing);
  }
}