sendEvent method
Implementation
Future<void> sendEvent(NostrEvent event) async {
try {
await nostrInstance.services.relays.sendEventToRelaysAsync(
event,
timeout: sendEventTimeout,
);
} catch (e) {
rethrow;
}
}
Future<void> sendEvent(NostrEvent event) async {
try {
await nostrInstance.services.relays.sendEventToRelaysAsync(
event,
timeout: sendEventTimeout,
);
} catch (e) {
rethrow;
}
}