GoogleCloudAiplatformV1SecretEnvVar.fromJson constructor

GoogleCloudAiplatformV1SecretEnvVar.fromJson(
  1. 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,
    );