setAutomaticallyAdjustsVideoMirroring method

Future<void> setAutomaticallyAdjustsVideoMirroring(
  1. {required bool adjust}
)

A Boolean value that indicates whether the value of videoMirrored can change based on configuration of the session.

For some session configurations, video data flowing through the connection will be mirrored by default. When the value of this property is true, the value of setVideoMirrored may change depending on the configuration of the session, for example after switching to a different capture device input.

The default value is true.

Implementation

Future<void> setAutomaticallyAdjustsVideoMirroring({required bool adjust}) {
  return _channel.$setAutomaticallyAdjustsVideoMirroring(this, adjust);
}