handleUnknownNotificationType method

T? handleUnknownNotificationType(
  1. NotificationReport report
)

Implementation

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