addSound method

PushNotification addSound(
  1. String sound
)

Add a sound to the push notification

Implementation

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