Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
async function () {
let date = new Date(Date.now() + 2 * 60 * 1000);
Notifications.scheduleNotificationWithCalendarAsync(
createNotification(this.title),
{
day:date.getDate(),
hour:date.getHours(),
minute:date.getMinutes(),
second:date.getSeconds(),
repeat: false,
}
);
}
,