ICalendarElement constructor

ICalendarElement({
  1. IOrganizer? organizer,
  2. String? uid,
  3. String? summary,
  4. String? description,
  5. List<String>? categories,
  6. String? url,
  7. IClass? classification = IClass.PRIVATE,
  8. String? comment,
  9. IRecurrenceRule? rrule,
})

Implementation

ICalendarElement({
  this.organizer,
  this.uid,
  this.summary,
  this.description,
  this.categories,
  this.url,
  this.classification = IClass.PRIVATE,
  this.comment,
  this.rrule,
});