GoogleCloudAiplatformV1SecretEnvVar.fromJson constructor
GoogleCloudAiplatformV1SecretEnvVar.fromJson(
- Map json_
Implementation
GoogleCloudAiplatformV1SecretEnvVar.fromJson(core.Map json_)
: this(
name: json_['name'] as core.String?,
secretRef:
json_.containsKey('secretRef')
? GoogleCloudAiplatformV1SecretRef.fromJson(
json_['secretRef'] as core.Map<core.String, core.dynamic>,
)
: null,
);