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