Update http_client_manager.dart

This commit is contained in:
Ankit Mahato
2025-03-30 00:48:46 +05:30
parent ef2069ba01
commit 362cbb9e08

View File

@@ -23,8 +23,9 @@ class HttpClientManager {
HttpClientManager._internal();
http.Client createClient(
String requestId,
{bool noSSL = false}) {
String requestId, {
bool noSSL = false,
}) {
final client =
(noSSL && !kIsWeb) ? createHttpClientWithNoSSL() : http.Client();
_clients[requestId] = client;