NostrEventKey constructor

const NostrEventKey({
  1. required String eventId,
  2. required String sourceSubscriptionId,
  3. required NostrEvent originalSourceEvent,
})

This clas can be used to identify an event uniquely based on external factors such as the subscription id.

Implementation

const NostrEventKey({
  required this.eventId,
  required this.sourceSubscriptionId,
  required this.originalSourceEvent,
});