NeatCleanCalendarEvent constructor

NeatCleanCalendarEvent(
  1. String summary, {
  2. String description = '',
  3. String location = '',
  4. required DateTime startTime,
  5. required DateTime endTime,
  6. Color? color = Colors.blue,
  7. bool isAllDay = false,
  8. bool isMultiDay = false,
  9. bool isDone = false,
  10. dynamic multiDaySegement,
  11. Map<String, dynamic>? metadata,
  12. String? icon,
  13. bool? wide,
})

Implementation

NeatCleanCalendarEvent(
  this.summary, {
  this.description = '',
  this.location = '',
  required this.startTime,
  required this.endTime,
  this.color = Colors.blue,
  this.isAllDay = false,
  this.isMultiDay = false,
  this.isDone = false,
  multiDaySegement,
  this.metadata,
  this.icon,
  this.wide,
});