fun notify()

in plugin/src/main/kotlin/org/jetbrains/downloadThis/DownloadFinishNotifier.kt [34:38]


    fun notify(project: Project, title: String, content: String): Notification {
        val notification: Notification = NOTIFICATION_GROUP.createNotification(title, content, NotificationType.INFORMATION)
        notification.notify(project)
        return notification
    }