setSystemOrientation static method
DO THAT:
await SystemChrome.setPreferredOrientations(orientations)
Implementation
static Future<void> setSystemOrientation(
List<DeviceOrientation> orientations) async {
await SystemChrome.setPreferredOrientations(orientations);
}