Make the screen orientation left and right

Hello i want my screen orientation turn into left and right not only left or right i want them both to be active. thanks if someone answer my question.

@MrCrumbl3d Call this method at Start

private void SetScreenOrientation()
{
     Screen.autorotateToPortrait = false;
     Screen.autorotateToLandscapeRight = true;
     Screen.autorotateToLandscapeLeft = true;
     Screen.autorotateToPortraitUpsideDown = false; 
}