GoogleCloudRetailV2ExperimentInfo.fromJson constructor
GoogleCloudRetailV2ExperimentInfo.fromJson(
- Map json_
Implementation
GoogleCloudRetailV2ExperimentInfo.fromJson(core.Map json_)
: this(
experiment: json_.containsKey('experiment')
? json_['experiment'] as core.String
: null,
servingConfigExperiment: json_.containsKey('servingConfigExperiment')
? GoogleCloudRetailV2ExperimentInfoServingConfigExperiment
.fromJson(json_['servingConfigExperiment']
as core.Map<core.String, core.dynamic>)
: null,
);