CalendarEvent constructor

CalendarEvent({String eventId, String title, String description, DateTime startDate, DateTime endDate, String location, int duration, bool isAllDay, bool hasAlarm })

Implementation

CalendarEvent(
    {this.eventId,
    this.title,
    this.description,
    this.startDate,
    this.endDate,
    this.location,
    this.duration,
    this.isAllDay,
    this.hasAlarm});