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