addTag method
Add a single custom tag filter.
Implementation
NostrFilterBuilder addTag(String tagName, String value) {
_tags.putIfAbsent(tagName, () => {}).add(value);
return this;
}
Add a single custom tag filter.
NostrFilterBuilder addTag(String tagName, String value) {
_tags.putIfAbsent(tagName, () => {}).add(value);
return this;
}