withPubkey method

NostrFilterBuilder withPubkey(
  1. String pubkey
)

Add a single referenced pubkey to the filter.

Implementation

NostrFilterBuilder withPubkey(String pubkey) {
  _p.add(pubkey);
  return this;
}