TF-3578 Calendar event show free busy status

This commit is contained in:
DatDang
2025-04-02 11:25:06 +07:00
committed by Dat H. Pham
parent 0703d14761
commit 4538959d30
21 changed files with 456 additions and 15 deletions
@@ -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];
}