GoogleCloudRunV2EnvVarSource.fromJson constructor
GoogleCloudRunV2EnvVarSource.fromJson(
- Map json_
Implementation
GoogleCloudRunV2EnvVarSource.fromJson(core.Map json_)
: this(
secretKeyRef: json_.containsKey('secretKeyRef')
? GoogleCloudRunV2SecretKeySelector.fromJson(
json_['secretKeyRef'] as core.Map<core.String, core.dynamic>)
: null,
);