CalendarEvent constructor

const CalendarEvent({
  1. required int id,
  2. required int portalId,
  3. DateTime? start,
  4. 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,
  this.start,
  this.end,
  required this.allDay,
  this.title,
  this.place,
  this.content,
  this.ownerName,
  this.creatorName,
});