CalendarEvent constructor

const CalendarEvent({
  1. String? description,
  2. DateTime? start,
  3. DateTime? end,
  4. String? location,
  5. String? organizer,
  6. String? status,
  7. String? summary,
})

Create a new CalendarEvent instance.

Implementation

const CalendarEvent({
  this.description,
  this.start,
  this.end,
  this.location,
  this.organizer,
  this.status,
  this.summary,
});