uniqueKey method

NostrEventKey uniqueKey()

Returns a unique tag for this event that you can use to identify it.

Implementation

NostrEventKey uniqueKey() {
  return NostrEventKey(
    eventId: id,
    sourceSubscriptionId: subscriptionId,
    originalSourceEvent: this,
  );
}