EncryptionInfo.fromJson constructor
      
      EncryptionInfo.fromJson(
    
    
- Map json_
Implementation
EncryptionInfo.fromJson(core.Map json_)
  : this(
      encryptionType: json_['encryptionType'] as core.String?,
      kmsKeyVersions:
          (json_['kmsKeyVersions'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );