GoogleChromeManagementV1HttpsLatencyRoutineData.fromJson constructor

GoogleChromeManagementV1HttpsLatencyRoutineData.fromJson(
  1. Map json_
)

Implementation

GoogleChromeManagementV1HttpsLatencyRoutineData.fromJson(core.Map json_)
    : this(
        latency: json_.containsKey('latency')
            ? json_['latency'] as core.String
            : null,
        problem: json_.containsKey('problem')
            ? json_['problem'] as core.String
            : null,
      );