WindowsDeviceInfo constructor

const WindowsDeviceInfo({
  1. required String computerName,
  2. required int numberOfCores,
  3. required int systemMemoryInMegabytes,
  4. required String userName,
  5. required int majorVersion,
  6. required int minorVersion,
  7. required int buildNumber,
  8. required int platformId,
  9. required String csdVersion,
  10. required int servicePackMajor,
  11. required int servicePackMinor,
  12. required int suitMask,
  13. required int productType,
  14. required int reserved,
  15. required String buildLab,
  16. required String buildLabEx,
  17. required Uint8List digitalProductId,
  18. required String displayVersion,
  19. required String editionId,
  20. required DateTime installDate,
  21. required String productId,
  22. required String productName,
  23. required String registeredOwner,
  24. required String releaseId,
  25. required String deviceId,
})

Constructs a WindowsDeviceInfo.

Implementation

const WindowsDeviceInfo({
  required this.computerName,
  required this.numberOfCores,
  required this.systemMemoryInMegabytes,
  required this.userName,
  required this.majorVersion,
  required this.minorVersion,
  required this.buildNumber,
  required this.platformId,
  required this.csdVersion,
  required this.servicePackMajor,
  required this.servicePackMinor,
  required this.suitMask,
  required this.productType,
  required this.reserved,
  required this.buildLab,
  required this.buildLabEx,
  required this.digitalProductId,
  required this.displayVersion,
  required this.editionId,
  required this.installDate,
  required this.productId,
  required this.productName,
  required this.registeredOwner,
  required this.releaseId,
  required this.deviceId,
});