stopCapture method
Called by stop while this track is still active, before the media track is stopped.
Implementation
@override
Future<void> stopCapture() async {
logger.fine('AudioTrack.stopCapture()');
for (final group in _captureGroups.values) {
await group.stop();
}
_captureGroups.clear();
}