GoogleChromeManagementV1CpuTemperatureInfo.fromJson constructor

GoogleChromeManagementV1CpuTemperatureInfo.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1CpuTemperatureInfo.fromJson(core.Map json_)
    : this(
        label:
            json_.containsKey('label') ? json_['label'] as core.String : null,
        temperatureCelsius: json_.containsKey('temperatureCelsius')
            ? json_['temperatureCelsius'] as core.int
            : null,
      );