unlockOrientation function

Future unlockOrientation()

Implementation

Future unlockOrientation() async {
  SystemChrome.setPreferredOrientations([
    DeviceOrientation.portraitUp,
    DeviceOrientation.landscapeRight,
    DeviceOrientation.landscapeLeft
  ]);
}