ScreenSize constructor

const ScreenSize({
  1. int width = 0,
  2. int height = 0,
})

Implementation

const ScreenSize({
  this.width = 0,
  this.height = 0
});