GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode.fromJson constructor

GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3TransitionCoverageTransitionNode.fromJson(
    core.Map json_)
    : this(
        flow: json_.containsKey('flow')
            ? GoogleCloudDialogflowCxV3Flow.fromJson(
                json_['flow'] as core.Map<core.String, core.dynamic>)
            : null,
        page: json_.containsKey('page')
            ? GoogleCloudDialogflowCxV3Page.fromJson(
                json_['page'] as core.Map<core.String, core.dynamic>)
            : null,
      );