getPushNotificationSound method

String getPushNotificationSound()

Implementation

String getPushNotificationSound() {
  if (Platform.isAndroid) {
    return getProperty("pushNotificationSoundAOS");
  } else if (Platform.isIOS) {
    return getProperty("pushNotificationSoundIOS");
  } else {
    return "";
  }
}