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