send<T> abstract method
Sends an event to the bus. If a handler exists for the topic, it will be called. Returns a Future that completes with the result if EventDTO.completer was called by the handler.
Implementation
Future<dynamic>? send<T>(
T data, {
String? path,
String? fragment,
String? target,
Map<String, String>? arguments,
});