GoogleCloudDialogflowV2ListEntityTypesResponse.fromJson constructor

GoogleCloudDialogflowV2ListEntityTypesResponse.fromJson(
  1. Map json_
)

Implementation

GoogleCloudDialogflowV2ListEntityTypesResponse.fromJson(core.Map json_)
    : this(
        entityTypes: json_.containsKey('entityTypes')
            ? (json_['entityTypes'] as core.List)
                .map((value) => GoogleCloudDialogflowV2EntityType.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
      );