withLimit method

NostrFilterBuilder withLimit(
  1. int limit
)

Set the limit.

Implementation

NostrFilterBuilder withLimit(int limit) {
  _limit = limit;
  return this;
}