ConfidentialInstanceConfig.fromJson constructor
ConfidentialInstanceConfig.fromJson(
- Map json_
Implementation
ConfidentialInstanceConfig.fromJson(core.Map json_)
: this(
confidentialInstanceType:
json_.containsKey('confidentialInstanceType')
? json_['confidentialInstanceType'] as core.String
: null,
enableConfidentialCompute:
json_.containsKey('enableConfidentialCompute')
? json_['enableConfidentialCompute'] as core.bool
: null,
);