GoogleChromeManagementV1OsUpdateStatus.fromJson constructor
GoogleChromeManagementV1OsUpdateStatus.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1OsUpdateStatus.fromJson(core.Map json_)
: this(
lastRebootTime: json_.containsKey('lastRebootTime')
? json_['lastRebootTime'] as core.String
: null,
lastUpdateCheckTime: json_.containsKey('lastUpdateCheckTime')
? json_['lastUpdateCheckTime'] as core.String
: null,
lastUpdateTime: json_.containsKey('lastUpdateTime')
? json_['lastUpdateTime'] as core.String
: null,
newPlatformVersion: json_.containsKey('newPlatformVersion')
? json_['newPlatformVersion'] as core.String
: null,
newRequestedPlatformVersion:
json_.containsKey('newRequestedPlatformVersion')
? json_['newRequestedPlatformVersion'] as core.String
: null,
updateState: json_.containsKey('updateState')
? json_['updateState'] as core.String
: null,
);