cpu property
JSSystemCpu
get
cpu
Use the system.cpu
API to query CPU metadata.
Implementation
JSSystemCpu get cpu {
var cpuNullable = this.cpuNullable;
if (cpuNullable == null) {
throw ApiNotAvailableException('chrome.system.cpu');
}
return cpuNullable;
}