stopAudioSharing method
Stop sharing your audio
Implementation
Future<Either<ScreenMeetError, bool>> stopAudioSharing() async {
final Map result = await _channel.invokeMethod(_pm.kStopSharingAudioCommand);
if (_pm.isSuccess(result)) { return Right(true);}
return Left(_pm.error(result));
}