Triggers a browser download for an .ics File. Resolves after the object URL is revoked.
.ics
File
If document or URL is not available.
document
URL
const { ics } = await CapacitorCalendar.createEvent({ title: 'Team standup', icsFileName: 'team-standup.ics',});if (ics) { await downloadIcsFile(ics);} Copy
const { ics } = await CapacitorCalendar.createEvent({ title: 'Team standup', icsFileName: 'team-standup.ics',});if (ics) { await downloadIcsFile(ics);}
8.5.0
Triggers a browser download for an
.icsFile. Resolves after the object URL is revoked.