stop method
Stops the webrtc.MediaStreamTrack of this Track.
Implementation
Future<void> stop() async {
Log.debug('stop()', '$runtimeType');
await Future.wait([track.getTrack().stop(), removeRenderer()]);
}
Stops the webrtc.MediaStreamTrack of this Track.
Future<void> stop() async {
Log.debug('stop()', '$runtimeType');
await Future.wait([track.getTrack().stop(), removeRenderer()]);
}