EncryptionConfig.fromJson constructor

EncryptionConfig.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}