DeviceInfo constructor

DeviceInfo({
  1. String? deviceName,
  2. String? osName,
  3. String? monitorName,
  4. List<GPUInfo> gpu = const [],
})

Implementation

DeviceInfo({
  this.deviceName,
  this.osName,
  this.monitorName,
  this.gpu = const [],
});