ScreenSizeSettings.portrait constructor

const ScreenSizeSettings.portrait({
  1. double watch = 220,
  2. double smallMobile = 360,
  3. double mediumMobile = 400,
  4. double largeMobile = 600,
  5. double smallTablet = 720,
  6. double largeTablet = 840,
})

Creates screen size settings for portrait orientation

Implementation

const ScreenSizeSettings.portrait({
  this.watch = 220,
  this.smallMobile = 360,
  this.mediumMobile = 400,
  this.largeMobile = 600,
  this.smallTablet = 720,
  this.largeTablet = 840,
});