TF-3578 Calendar event show free busy status
This commit is contained in:
@@ -5,9 +5,14 @@ import 'package:jmap_dart_client/jmap/mail/calendar/calendar_event.dart';
|
||||
class BlobCalendarEvent with EquatableMixin {
|
||||
final Id blobId;
|
||||
final List<CalendarEvent> calendarEventList;
|
||||
final bool isFree;
|
||||
|
||||
BlobCalendarEvent({required this.blobId, required this.calendarEventList});
|
||||
BlobCalendarEvent({
|
||||
required this.blobId,
|
||||
required this.calendarEventList,
|
||||
this.isFree = true,
|
||||
});
|
||||
|
||||
@override
|
||||
List<Object?> get props => [blobId, calendarEventList];
|
||||
List<Object?> get props => [blobId, calendarEventList, isFree];
|
||||
}
|
||||
Reference in New Issue
Block a user