Nevent constructor

Nevent({
  1. required String eventId,
  2. String? author,
  3. int? kind,
  4. List<String>? relays,
})

Implementation

Nevent({
  required this.eventId,
  this.author,
  this.kind,
  this.relays,
});