GoogleChromeManagementV1MemoryInfo.fromJson constructor

GoogleChromeManagementV1MemoryInfo.fromJson(
  1. Map json_
)

Implementation

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