GoogleCloudDialogflowV2ListGeneratorsResponse.fromJson constructor

GoogleCloudDialogflowV2ListGeneratorsResponse.fromJson(
  1. Map json_
)

Implementation

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