ScreenInfo constructor

ScreenInfo({
  1. required int left,
  2. required int top,
  3. required int width,
  4. required int height,
  5. required int availLeft,
  6. required int availTop,
  7. required int availWidth,
  8. required int availHeight,
  9. required num devicePixelRatio,
  10. required ScreenOrientation orientation,
  11. required int colorDepth,
  12. required bool isExtended,
  13. required bool isInternal,
  14. required bool isPrimary,
  15. required String label,
  16. required ScreenId id,
})

Implementation

ScreenInfo({
  required this.left,
  required this.top,
  required this.width,
  required this.height,
  required this.availLeft,
  required this.availTop,
  required this.availWidth,
  required this.availHeight,
  required this.devicePixelRatio,
  required this.orientation,
  required this.colorDepth,
  required this.isExtended,
  required this.isInternal,
  required this.isPrimary,
  required this.label,
  required this.id,
});