GoogleCloudDialogflowCxV3ListIntentsResponse.fromJson constructor

GoogleCloudDialogflowCxV3ListIntentsResponse.fromJson(
  1. Map json_
)

Implementation

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