CPUInfo constructor

CPUInfo({
  1. String? soc,
  2. String? cpu,
  3. String? vendor,
  4. String? cores,
  5. String? machines,
  6. String? cpuClockRange,
  7. List<CPUCores>? cpuClocks,
  8. List<String>? supportedAbis,
  9. List<String>? supported32bitAbis,
  10. List<String>? supported64bitAbis,
  11. List<String>? instructions,
  12. String? revision,
  13. String? governer,
  14. String? gpu,
  15. String? gpuVendor,
  16. String? gpuVersion,
  17. List<String>? openglExtensions,
})

Implementation

CPUInfo({
  this.soc,
  this.cpu,
  this.vendor,
  this.cores,
  this.machines,
  this.cpuClockRange,
  this.cpuClocks,
  this.supportedAbis,
  this.supported32bitAbis,
  this.supported64bitAbis,
  this.instructions,
  this.revision,
  this.governer,
  this.gpu,
  this.gpuVendor,
  this.gpuVersion,
  this.openglExtensions,
});