NotificationHint.soundName constructor

NotificationHint.soundName(
  1. String name
)

This notification should play the sound from the sound theme with name when shown.

Implementation

factory NotificationHint.soundName(String name) {
  return NotificationHint('sound-name', DBusString(name));
}