toJson method
Converts the object to a JSON representation.
Implementation
@override
Map<String, dynamic> toJson() {
return {
"headers": headers.toJson(),
"ciphertext": BytesUtils.tryToHexString(ciphertext),
"recipients": recipients.toJson(),
"serialization_config": serializationConfig.toJson()
};
}