setVideoMirrored method

Future<void> setVideoMirrored({
  1. required bool mirrored,
})

A Boolean value that indicates whether the video flowing through the connection should be mirrored about its vertical axis.

This property is only applicable to connections involving video.

If the value of isVideoMirroringSupported is true, you can set videoMirrored to true to flip the video about its vertical axis and produce a mirror-image effect.

Implementation

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