GoogleChromeManagementV1NetworkDiagnosticsReport.fromJson constructor

GoogleChromeManagementV1NetworkDiagnosticsReport.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1NetworkDiagnosticsReport.fromJson(core.Map json_)
    : this(
        httpsLatencyData: json_.containsKey('httpsLatencyData')
            ? GoogleChromeManagementV1HttpsLatencyRoutineData.fromJson(
                json_['httpsLatencyData']
                    as core.Map<core.String, core.dynamic>)
            : null,
        reportTime: json_.containsKey('reportTime')
            ? json_['reportTime'] as core.String
            : null,
      );