androidNotification method
Set parameters for foreground service notification. Only required for apps targeting Android O and above.
Implementation
GeoTriggeringBuilder androidNotification(String? channelId, String? channelName, String? androidNotificationTitle, String? androidNotificationContent, int androidNotificationId) {
this.channelId = channelId;
this.channelName = channelName;
this.androidNotificationTitle = androidNotificationTitle;
this.androidNotificationContent = androidNotificationContent;
this.androidNotificationId = androidNotificationId;
return this;
}