feat : login api call

This commit is contained in:
2025-05-17 15:24:06 +03:30
parent 0e630e709b
commit 303ff86d85
22 changed files with 518 additions and 522 deletions

View File

@@ -16,7 +16,11 @@ class DioRemote implements IHttpClient {
Future<void> init() async {
final dio = Dio(BaseOptions(baseUrl: baseUrl));
if (kDebugMode) {
dio.interceptors.add(PrettyDioLogger());
dio.interceptors.add(PrettyDioLogger(
requestHeader: true,
responseHeader: true,
requestBody: true
));
}
_dio = dio;
}