addTag method

NostrFilterBuilder addTag(
  1. String tagName,
  2. String value
)

Add a single custom tag filter.

Implementation

NostrFilterBuilder addTag(String tagName, String value) {
  _tags.putIfAbsent(tagName, () => {}).add(value);
  return this;
}