GoogleCloudRecommendationengineV1beta1FeatureMapStringList.fromJson constructor

GoogleCloudRecommendationengineV1beta1FeatureMapStringList.fromJson(
  1. Map _json
)

Implementation

GoogleCloudRecommendationengineV1beta1FeatureMapStringList.fromJson(
    core.Map _json)
    : this(
        value: _json.containsKey('value')
            ? (_json['value'] as core.List)
                .map<core.String>((value) => value as core.String)
                .toList()
            : null,
      );