ScreenInfo constructor

const ScreenInfo({
  1. required double width,
  2. required double height,
  3. required double textScale,
  4. required DeviceType deviceType,
})

Implementation

const ScreenInfo({
  required this.width,
  required this.height,
  required this.textScale,
  required this.deviceType,
});