sendLogEvent method
Send an log with the custom informate implement to all the diagnostic.
A DiagnosticAnalyticEvent extension can be create if you need a
custom information.
Implementation
@override
@mustCallSuper
FutureOr<void> sendLogEvent({required covariant DiagnosticLogsEvent event}) {
if (!options.mustSendLogsEvents) return null;
for (Diagnostic diagnostic in _diagnostics) {
diagnostic.sendLogEvent(
event: event,
);
}
}