GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.fromJson constructor
GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.fromJson(
- Map json_
Implementation
GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.fromJson(core.Map json_)
: this(
entityValues: json_.containsKey('entityValues')
? (json_['entityValues'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
languageCode: json_.containsKey('languageCode')
? json_['languageCode'] as core.String
: null,
);