NostrEventOkCommand constructor

const NostrEventOkCommand({
  1. required String eventId,
  2. bool? isEventAccepted,
  3. String? message,
})

The ok command that is sent to the server when an event is accepted or declined.

Implementation

const NostrEventOkCommand({
  required this.eventId,
  this.isEventAccepted,
  this.message,
});