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

@ -1,5 +1,4 @@
import 'dart:convert';
import 'dart:developer';
import 'package:http/http.dart';
import 'package:http/http.dart' as http;
@ -18,7 +17,6 @@ class AddCustomTimetableEvent extends MhslApi<void> {
@override
Future<Response>? request(Uri uri) {
String body = jsonEncode(params.toJson());
log(body);
return http.post(uri, body: body);
}
}