withPubkeys method

NostrFilterBuilder withPubkeys(
  1. List<String> pubkeys
)

Add referenced pubkeys to the filter.

Implementation

NostrFilterBuilder withPubkeys(List<String> pubkeys) {
  _p.addAll(pubkeys);
  return this;
}