GoogleCloudAiplatformV1CreateFeatureRequest.fromJson constructor

GoogleCloudAiplatformV1CreateFeatureRequest.fromJson(
  1. Map json_
)

Implementation

GoogleCloudAiplatformV1CreateFeatureRequest.fromJson(core.Map json_)
  : this(
      feature: json_.containsKey('feature')
          ? GoogleCloudAiplatformV1Feature.fromJson(
              json_['feature'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      featureId: json_['featureId'] as core.String?,
      parent: json_['parent'] as core.String?,
    );