lock static method
Implementation
static void lock(DeviceOrientation orientation) {
if (orientation == DeviceOrientation.landscapeLeft && Platform.isIOS) {
orientation = DeviceOrientation.landscapeRight;
}
SystemChrome.setPreferredOrientations([orientation]);
}