Fixed code issues via automatic dart fix

This commit is contained in:
Elias Müller 2024-03-12 08:21:14 +01:00
parent 41372e9e86
commit efd13b0919
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;