stop method

void stop()

Stop the track

Implementation

void stop() {
  stopped = true;
  muted = true;
  _endedController.add(null);
  _rtpController.close();
  _rtcpController.close();
  _sourceChangedController.close();
  _endedController.close();
}