Naddr constructor

Naddr({
  1. required String identifier,
  2. required String pubkey,
  3. required int kind,
  4. List<String>? relays,
})

Implementation

Naddr({
  required this.identifier,
  required this.pubkey,
  required this.kind,
  this.relays,
});