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