Skip to content

Commit

Permalink
swift renaming
Browse files Browse the repository at this point in the history
  • Loading branch information
thomassth committed Dec 18, 2021
1 parent 4343477 commit 4ed6e5d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ios/Classes/SwiftDeviceCalendarPlugin.swift
Original file line number Diff line number Diff line change
@@ -350,15 +350,15 @@ public class SwiftDeviceCalendarPlugin: NSObject, FlutterPlugin {
let event = Event(
eventId: ekEvent.eventIdentifier,
calendarId: calendarId,
title: ekEvent.title ?? "New Event",
description: ekEvent.notes,
eventTitle: ekEvent.title ?? "New Event",
eventDescription: ekEvent.notes,
eventStartDate: Int64(ekEvent.startDate.millisecondsSinceEpoch),
eventEndDate: Int64(ekEvent.endDate.millisecondsSinceEpoch),
startTimeZone: ekEvent.timeZone?.identifier,
allDay: ekEvent.isAllDay,
eventStartTimeZone: ekEvent.timeZone?.identifier,
eventAllDay: ekEvent.isAllDay,
attendees: attendees,
location: ekEvent.location,
url: ekEvent.url?.absoluteString,
eventLocation: ekEvent.location,
eventURL: ekEvent.url?.absoluteString,
recurrenceRule: recurrenceRule,
organizer: convertEkParticipantToAttendee(ekParticipant: ekEvent.organizer),
reminders: reminders,

0 comments on commit 4ed6e5d

Please sign in to comment.