GoogleCloudAiplatformV1FeatureValueList.fromJson constructor

GoogleCloudAiplatformV1FeatureValueList.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1FeatureValueList.fromJson(core.Map json_)
    : this(
        values: json_.containsKey('values')
            ? (json_['values'] as core.List)
                .map((value) => GoogleCloudAiplatformV1FeatureValue.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );