disableRemoteOrientation method

FutureOr<void> disableRemoteOrientation()

@detail api @author luomingkang.264 @brief Turn off the effect of the orientation of the local user as the sound source.
After the effect is off, all the other users in the room listen to the local user as if the local user is in right front of each of them. @note - After the orientation effect as the sound source is disabled, you cannot enable it during the lifetime of the SpatialAudio instance. - Calling this API does not affect the orientation effect of the local user as a listener. See updateSelfPosition{@link #ISpatialAudio#updateSelfPosition} and updateRemotePosition{@link #ISpatialAudio#updateRemotePosition}.

Implementation

FutureOr<void> disableRemoteOrientation() async {
  return await nativeCall('disableRemoteOrientation', []);
}