GoogleCloudDialogflowV2ServiceLatency.fromJson constructor

GoogleCloudDialogflowV2ServiceLatency.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2ServiceLatency.fromJson(core.Map json_)
  : this(
      internalServiceLatencies: (json_['internalServiceLatencies'] as core.List?)
          ?.map(
            (value) =>
                GoogleCloudDialogflowV2ServiceLatencyInternalServiceLatency.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
          )
          .toList(),
    );