ScreenInfo constructor
ScreenInfo({})
Constructs a ScreenInfo instance with the given parameters.
width provides the screen width.
height provides the screen height.
orientation provides the screen orientation.
Implementation
ScreenInfo({
required this.width,
required this.height,
required this.orientation,
required this.mobilePortraitBreakpoint,
required this.mobileLandscapeBreakpoint,
required this.tabletLandscapeBreakpoint,
});