GoogleCloudDialogflowV2ListIntentsResponse.fromJson constructor

GoogleCloudDialogflowV2ListIntentsResponse.fromJson(
  1. Map json_
)

Implementation

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