GoogleCloudRetailV2ExperimentInfo.fromJson constructor

GoogleCloudRetailV2ExperimentInfo.fromJson(
  1. Map json_
)

Implementation

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