getInfo method

Future<CpuInfo> getInfo()

Queries basic CPU information of the system.

Implementation

Future<CpuInfo> getInfo() async {
  var $res =
      await promiseToFuture<$js.CpuInfo>($js.chrome.system.cpu.getInfo());
  return CpuInfo.fromJS($res);
}