toPayload method
Implementation
EventPayload toPayload() {
ensureDecodedPayloadView(
pptScheme: details.pptScheme,
pptSerializer: details.pptSerializer,
pptCipher: details.pptCipher,
pptKeyId: details.pptKeyId,
);
return (
subscriptionId: subscriptionId,
publicationId: publicationId,
publisher: details.publisher,
trustlevel: details.trustlevel,
topic: details.topic,
pptScheme: details.pptScheme,
pptSerializer: details.pptSerializer,
pptCipher: details.pptCipher,
pptKeyId: details.pptKeyId,
customDetails: details.custom.isEmpty ? null : details.custom,
arguments: super.arguments,
argumentsKeywords: super.argumentsKeywords,
);
}