CalendarEvent constructor

CalendarEvent(
  1. String id,
  2. DateTime? start,
  3. DateTime? end, {
  4. String description = '',
  5. required String name,
})

Implementation

CalendarEvent(
  this.id,
  this.start,
  this.end, {
  this.description = '',
  required this.name,
});