NeatCleanCalendarEvent constructor
NeatCleanCalendarEvent(
- String summary, {
- String description = '',
- String location = '',
- required DateTime startTime,
- required DateTime endTime,
- Color? color = Colors.blue,
- bool isAllDay = false,
- bool isMultiDay = false,
- bool isDone = false,
- dynamic multiDaySegement,
- Map<
String, dynamic> ? metadata, - String? icon,
- bool? wide,
- String? id,
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,
this.id,
});