isVideoOrientationSupported method

Future<bool> isVideoOrientationSupported()

A Boolean value that indicates whether the connection supports changing the orientation of the video.

Implementation

Future<bool> isVideoOrientationSupported() async {
  return _channel.$isVideoOrientationSupported(this) as bool;
}