send method
Sends a ReportEvent to the remote/system of choice.
Returns true iff the event was successfully delivered.
Implementation
@override
Future<bool> send(ReportEvent event) async {
// Treat "send" as "share" for this reporter; there is no remote target.
return share(event);
}