fullScreen method

PosSizeModel fullScreen()

Implementation

PosSizeModel fullScreen() {
  return PosSizeModel(
      fitLandscape: LandscapeFitType.landscapeCover,
      widthLandscape: 1,
      heightLandscape: 1,
      heightTypeLandscape: HeightTypeLandscape.percentageHeight,
      widthTypeLandscape: WidthTypeLandscape.percentageWidth,
      fitPortrait: PortraitFitType.portraitFitHeight,
      widthPortrait: 1,
      heightPortrait: 1,
      heightTypePortrait: HeightTypePortrait.percentageHeight,
      widthTypePortrait: WidthTypePortrait.percentageWidth,
      clip: ClipType.noClip);
}