GoogleChromeManagementV1CpuInfo.fromJson constructor
GoogleChromeManagementV1CpuInfo.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1CpuInfo.fromJson(core.Map json_)
: this(
architecture: json_.containsKey('architecture')
? json_['architecture'] as core.String
: null,
keylockerConfigured: json_.containsKey('keylockerConfigured')
? json_['keylockerConfigured'] as core.bool
: null,
keylockerSupported: json_.containsKey('keylockerSupported')
? json_['keylockerSupported'] as core.bool
: null,
maxClockSpeed: json_.containsKey('maxClockSpeed')
? json_['maxClockSpeed'] as core.int
: null,
model:
json_.containsKey('model') ? json_['model'] as core.String : null,
);