send method

  1. @override
Future<bool> send(
  1. ReportEvent event
)
override

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);
}