CustomerEncryptionKeyProtectedDisk.fromJson constructor

CustomerEncryptionKeyProtectedDisk.fromJson(
  1. Map json_
)

Implementation

CustomerEncryptionKeyProtectedDisk.fromJson(core.Map json_)
    : this(
        diskEncryptionKey: json_.containsKey('diskEncryptionKey')
            ? CustomerEncryptionKey.fromJson(json_['diskEncryptionKey']
                as core.Map<core.String, core.dynamic>)
            : null,
        source: json_.containsKey('source')
            ? json_['source'] as core.String
            : null,
      );