WindowsDeviceInfo constructor

WindowsDeviceInfo({
  1. required String computerName,
  2. required int numberOfCores,
  3. required int systemMemoryInMegabytes,
})

Constructs a WindowsDeviceInfo.

Implementation

WindowsDeviceInfo({
  required this.computerName,
  required this.numberOfCores,
  required this.systemMemoryInMegabytes,
});