GoogleChromeManagementV1MemoryInfo.fromJson constructor
GoogleChromeManagementV1MemoryInfo.fromJson(
- Map json_
Implementation
GoogleChromeManagementV1MemoryInfo.fromJson(core.Map json_)
: this(
availableRamBytes: json_.containsKey('availableRamBytes')
? json_['availableRamBytes'] as core.String
: null,
totalMemoryEncryption: json_.containsKey('totalMemoryEncryption')
? GoogleChromeManagementV1TotalMemoryEncryptionInfo.fromJson(
json_['totalMemoryEncryption']
as core.Map<core.String, core.dynamic>)
: null,
totalRamBytes: json_.containsKey('totalRamBytes')
? json_['totalRamBytes'] as core.String
: null,
);