removeRemotePosition method

FutureOr<int> removeRemotePosition(
  1. String uid
)

@valid since 3.52 @detail api @author wangjunzheng @brief Disables all spatial audio effects set by calling updateRemotePosition{@link #ISpatialAudio#updateRemotePosition} for a certain remote user. @param uid User ID of the remote user. @return - 0: Success. - <0: Failure.

Implementation

FutureOr<int> removeRemotePosition(String uid) async {
  return await nativeCall('removeRemotePosition', [uid]);
}