CleanCalendarEvent constructor

CleanCalendarEvent(
  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 isDone = false,
})

Implementation

CleanCalendarEvent(this.summary,
    {this.description = '',
    this.location = '',
    required this.startTime,
    required this.endTime,
    this.color = Colors.blue,
    this.isAllDay = false,
    this.isDone = false});