ScreenManager constructor

const ScreenManager({
  1. List<DeviceOrientation> orientations = DeviceOrientation.values,
  2. List<SystemUiOverlay> overlays = SystemUiOverlay.values,
  3. bool forceLandScapeInFullscreen = true,
})

Implementation

const ScreenManager({
  this.orientations = DeviceOrientation.values,
  this.overlays = SystemUiOverlay.values,
  this.forceLandScapeInFullscreen = true,
});