isVideoTrackSupportAvailable method

bool isVideoTrackSupportAvailable()

Whether video track selection is supported on this platform.

Use this to check before calling getVideoTracks or selectVideoTrack to avoid UnimplementedError exceptions on unsupported platforms.

Implementation

bool isVideoTrackSupportAvailable() {
  return _videoPlayerPlatform.isVideoTrackSupportAvailable();
}