Skip to content

Commit 594afd0

Browse files
fixup! Add CalendarEventAttendance/get method
1 parent ba3d9c8 commit 594afd0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

lib/jmap/core/capability/calendar_event_capability.dart

+6-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,12 @@ part 'calendar_event_capability.g.dart';
66
@JsonSerializable(includeIfNull: false)
77
class CalendarEventCapability extends CapabilityProperties {
88
final List<String>? replySupportedLanguage;
9+
final bool? supportFreeBusyQuery;
910

10-
CalendarEventCapability({this.replySupportedLanguage});
11+
CalendarEventCapability({
12+
this.replySupportedLanguage,
13+
this.supportFreeBusyQuery,
14+
});
1115

1216
factory CalendarEventCapability.fromJson(Map<String, dynamic> json)
1317
=> _$CalendarEventCapabilityFromJson(json);
@@ -19,5 +23,5 @@ class CalendarEventCapability extends CapabilityProperties {
1923
}
2024

2125
@override
22-
List<Object?> get props => [replySupportedLanguage];
26+
List<Object?> get props => [replySupportedLanguage, supportFreeBusyQuery];
2327
}

lib/jmap/core/capability/calendar_event_capability.g.dart

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)