GoogleCloudDialogflowCxV3IntentTrainingPhrasePart.fromJson constructor

GoogleCloudDialogflowCxV3IntentTrainingPhrasePart.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowCxV3IntentTrainingPhrasePart.fromJson(core.Map json_)
    : this(
        parameterId: json_.containsKey('parameterId')
            ? json_['parameterId'] as core.String
            : null,
        text: json_.containsKey('text') ? json_['text'] as core.String : null,
      );