ShieldedInstanceIdentityEntry.fromJson constructor
ShieldedInstanceIdentityEntry.fromJson(
- Map json_
Implementation
ShieldedInstanceIdentityEntry.fromJson(core.Map json_)
: this(
ekCert: json_.containsKey('ekCert')
? json_['ekCert'] as core.String
: null,
ekPub:
json_.containsKey('ekPub') ? json_['ekPub'] as core.String : null,
);