stopAudioSharing method

Future<Either<ScreenMeetError, bool>> stopAudioSharing()

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));
}