CalendarEvent constructor

const CalendarEvent({
  1. required int id,
  2. required int portalId,
  3. required DateTime start,
  4. required DateTime end,
  5. required bool allDay,
  6. String? title,
  7. String? place,
  8. String? content,
  9. String? ownerName,
  10. String? creatorName,
})

Implementation

const CalendarEvent({
  required this.id,
  required this.portalId,
  required this.start,
  required this.end,
  required this.allDay,
  this.title,
  this.place,
  this.content,
  this.ownerName,
  this.creatorName,
});