Custom Timetable code style corrections

This commit is contained in:
2024-02-12 01:08:57 +01:00
parent 22db412e75
commit 0f6c75690d
4 changed files with 0 additions and 5 deletions

View File

@ -22,7 +22,6 @@ class CustomTimetableEvent {
CustomTimetableEvent({required this.id, required this.title, required this.description, required this.startDate,
required this.endDate, required this.rrule, required this.createdAt, required this.updatedAt});
factory CustomTimetableEvent.fromJson(Map<String, dynamic> json) => _$CustomTimetableEventFromJson(json);
Map<String, dynamic> toJson() => _$CustomTimetableEventToJson(this);
}