Display constructor
Display({
- required bool builtin,
- required String connection,
- required int currentResX,
- required int currentResY,
- required bool main,
- required String model,
- required String pixeldepth,
- required int positionX,
- required int positionY,
- required int resolutionx,
- required int resolutiony,
- required int sizex,
- required int sizey,
- required String vendor,
Example:
builtin: true
connection: "INTERNAL"
currentResX: 1440
currentResY: 900
main: false
model: "Generic PnP Monitor"
pixeldepth: "32"
positionX: 1920
positionY: 290
resolutionx: 1440
resolutiony: 900
sizex: 30
sizey: 19
vendor: "(Standard monitor types)"
Implementation
Display({
required this.builtin,
required this.connection,
required this.currentResX,
required this.currentResY,
required this.main,
required this.model,
required this.pixeldepth,
required this.positionX,
required this.positionY,
required this.resolutionx,
required this.resolutiony,
required this.sizex,
required this.sizey,
required this.vendor,
});