NotificationHint.imagePath constructor

NotificationHint.imagePath(
  1. String path
)

This notification should use the image at path as the icon.

Implementation

factory NotificationHint.imagePath(String path) {
  return NotificationHint('image-path', DBusString(path));
}