iosNotification method

GeoTriggeringBuilder iosNotification(
  1. String? iosAppRestartNotificationTitle,
  2. String? iosAppRestartNotificationButtonText
)

Set parameters for iOS Restart notification.

Implementation

GeoTriggeringBuilder iosNotification(String? iosAppRestartNotificationTitle, String? iosAppRestartNotificationButtonText) {
  this.iosAppRestartNotificationTitle = iosAppRestartNotificationTitle;
  this.iosAppRestartNotificationButtonText = iosAppRestartNotificationButtonText;
  return this;
}