GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent.fromJson constructor

GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent.fromJson(
  core.Map json_,
) : this(
      httpsLatencyRoutineData:
          json_.containsKey('httpsLatencyRoutineData')
              ? GoogleChromeManagementV1HttpsLatencyRoutineData.fromJson(
                json_['httpsLatencyRoutineData']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      httpsLatencyState: json_['httpsLatencyState'] as core.String?,
    );