GoogleCloudDialogflowCxV3IntentTrainingPhrase.fromJson constructor
GoogleCloudDialogflowCxV3IntentTrainingPhrase.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowCxV3IntentTrainingPhrase.fromJson(core.Map json_)
: this(
id: json_['id'] as core.String?,
parts: (json_['parts'] as core.List?)
?.map(
(value) =>
GoogleCloudDialogflowCxV3IntentTrainingPhrasePart.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
repeatCount: json_['repeatCount'] as core.int?,
);