ScreenSize constructor

const ScreenSize({
  1. required LayoutSize size,
  2. MobileLayoutSize? mobile,
  3. TabletLayoutSize? tablet,
  4. Orientation? orientation,
})

Creates an instance of ScreenSize that stores data of LayoutSize, MobileLayoutSize and TabletLayoutSize

Implementation

const ScreenSize({
  required this.size,
  this.mobile,
  this.tablet,
  this.orientation,
});