addSound method

LocalNotification addSound(
  1. String sound
)

Sets the sound for the notification.

Implementation

LocalNotification addSound(String sound) {
  _sound = sound;
  return this;
}