unhandledNotification method

T? unhandledNotification(
  1. NotificationReport report
)

Implementation

T? unhandledNotification(NotificationReport report) {
  logger.warning(
      'Unhandled notification: ${report.sourceNode} ${report.notificationType} ${report.notification} ${report.data}');
  return null;
}