GoogleCloudDialogflowCxV3RestorePlaybookVersionResponse.fromJson constructor

GoogleCloudDialogflowCxV3RestorePlaybookVersionResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3RestorePlaybookVersionResponse.fromJson(
  core.Map json_,
) : this(
      playbook: json_.containsKey('playbook')
          ? GoogleCloudDialogflowCxV3Playbook.fromJson(
              json_['playbook'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );