BootDiskConfig.fromJson constructor

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