GoogleCloudDialogflowCxV3ExportFlowRequest.fromJson constructor

GoogleCloudDialogflowCxV3ExportFlowRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3ExportFlowRequest.fromJson(core.Map json_)
    : this(
        flowUri: json_.containsKey('flowUri')
            ? json_['flowUri'] as core.String
            : null,
        includeReferencedFlows: json_.containsKey('includeReferencedFlows')
            ? json_['includeReferencedFlows'] as core.bool
            : null,
      );