toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final encryptionType = this.encryptionType;
  final keyId = this.keyId;
  return {
    'EncryptionType': encryptionType.toValue(),
    'KeyId': keyId,
  };
}