How can you trigger a notification instantly?
// Schedule delayed notification
this.localNotifications.schedule({
text: 'Delayed ILocalNotification',
at: new Date(new Date().getTime() +1000),
led: 'FF0000',
sound: null
});
My workaround is to do it like seen above. But this is dirty and has a one second delay. I can’t find anything in the docs on how to trigger notifications instantly…