screen75 function

PosSizeModel screen75(
  1. String appId
)

Implementation

PosSizeModel screen75(String appId) {
  return PosSizeModel(
      widthPortrait: .75,
      widthTypePortrait: WidthTypePortrait.percentageWidth,
      heightPortrait: .75,
      heightTypePortrait: HeightTypePortrait.percentageHeight,
      fitPortrait: PortraitFitType.portraitFitWidth,
      alignTypePortrait: PortraitAlignType.portraitAlignCenter,
      widthLandscape: .75,
      widthTypeLandscape: WidthTypeLandscape.percentageWidth,
      heightLandscape: .75,
      heightTypeLandscape: HeightTypeLandscape.percentageHeight,
      fitLandscape: LandscapeFitType.landscapeFitHeight,
      alignTypeLandscape: LandscapeAlignType.landscapeAlignCenter,
      clip: ClipType.noClip);
}