GoogleCloudDialogflowCxV3ListIntentsResponse.fromJson constructor
GoogleCloudDialogflowCxV3ListIntentsResponse.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowCxV3ListIntentsResponse.fromJson(core.Map json_)
: this(
intents: (json_['intents'] as core.List?)
?.map(
(value) => GoogleCloudDialogflowCxV3Intent.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
nextPageToken: json_['nextPageToken'] as core.String?,
);