GoogleCloudRetailV2ListGenerativeQuestionConfigsResponse.fromJson constructor
GoogleCloudRetailV2ListGenerativeQuestionConfigsResponse.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2ListGenerativeQuestionConfigsResponse.fromJson(
core.Map json_,
) : this(
generativeQuestionConfigs:
(json_['generativeQuestionConfigs'] as core.List?)
?.map(
(value) =>
GoogleCloudRetailV2GenerativeQuestionConfig.fromJson(
value as core.Map<core.String, core.dynamic>,
),
)
.toList(),
);