searchEvents abstract method
search events
ids
- list of event ids
authors
- list of authors pubKeys
kinds
- list of kinds
tags
- map of tags
since
- timestamp
until
- timestamp
search
- search string to match against content
limit
- limit of results
returns list of events
Implementation
Future<Iterable<Nip01Event>> searchEvents({
List<String>? ids,
List<String>? authors,
List<int>? kinds,
Map<String, List<String>>? tags,
int? since,
int? until,
String? search,
int limit = 100,
});