GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.fromJson constructor

GoogleCloudDialogflowV2BatchDeleteEntitiesRequest.fromJson(
  1. Map json_
)

Implementation

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