EncryptionConfig.fromJson constructor
Implementation
factory EncryptionConfig.fromJson(Map<String, dynamic> json) {
return EncryptionConfig(
keyId: json['KeyId'] as String?,
status: (json['Status'] as String?)?.toEncryptionStatus(),
type: (json['Type'] as String?)?.toEncryptionType(),
);
}