CPUInfo constructor

CPUInfo({
  1. String? cpuProcessor,
  2. double? cpuSpeedInGhz,
  3. int? numberOfCores,
})

Implementation

CPUInfo({
  this.cpuProcessor,
  this.cpuSpeedInGhz,
  this.numberOfCores,
});