sendNotificationsForFile method
Send notifications for the services subscribed to for the file with the
given path
.
This is a convenience method that subclasses can use to send notifications after analysis has been performed on a file.
Implementation
void sendNotificationsForFile(String path) {
for (var service in subscriptionManager.servicesForFile(path)) {
_sendNotificationForFile(path, service);
}
}