GoogleCloudDialogflowCxV3RestoreToolVersionResponse.fromJson constructor

GoogleCloudDialogflowCxV3RestoreToolVersionResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3RestoreToolVersionResponse.fromJson(core.Map json_)
  : this(
      tool:
          json_.containsKey('tool')
              ? GoogleCloudDialogflowCxV3Tool.fromJson(
                json_['tool'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );