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