pause method

void pause()

Set the Mode of the VCR to Mode.bypass.

final vcr = VCR();
vcr.pause();

Implementation

void pause() {
  mode = Mode.bypass;
}