logNotification method

  1. @override
void logNotification(
  1. String notification
)
override

Log that a notification has been sent to the client.

Implementation

@override
void logNotification(String notification) {
  _services.forEach((s) => s.logNotification(notification));
}