GoogleCloudDialogflowCxV3ListGeneratorsResponse.fromJson constructor

GoogleCloudDialogflowCxV3ListGeneratorsResponse.fromJson(
  1. Map json_
)

Implementation

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