NotificationHint.soundFile constructor

NotificationHint.soundFile(
  1. String path
)

This notification should play the sound file at path when shown.

Implementation

factory NotificationHint.soundFile(String path) {
  return NotificationHint('sound-file', DBusString(path));
}