pause method

void pause()

Implementation

void pause() async {
  if (_stream != null) {
    _stream!.pause();
  }
}