Merge remote-tracking branch 'origin/develop' into develop

This commit is contained in:
Elias Müller 2024-03-12 16:54:40 +01:00
commit 57c2b5fd57
5 changed files with 5 additions and 5 deletions

View File

@ -11,7 +11,7 @@ class DeleteMessage extends TalkApi {
@override
assemble(String raw) {
return null;
}
@override

View File

@ -12,7 +12,7 @@ class DeleteReactMessage extends TalkApi {
@override
assemble(String raw) {
return null;
}
@override

View File

@ -12,7 +12,7 @@ class ReactMessage extends TalkApi {
@override
assemble(String raw) {
return null;
}
@override

View File

@ -11,7 +11,7 @@ class SendMessage extends TalkApi {
@override
assemble(String raw) {
return null;
}
@override

View File

@ -6,7 +6,7 @@ class ArbitraryAppointment {
GetTimetableResponseObject? webuntis;
CustomTimetableEvent? custom;
ArbitraryAppointment({this.webuntis, this.custom}) {}
ArbitraryAppointment({this.webuntis, this.custom});
bool hasWebuntis() {
return webuntis != null;