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