Skip to content

Commit 362cbb9

Browse files
committed
Update http_client_manager.dart
1 parent ef2069b commit 362cbb9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/apidash_core/lib/services/http_client_manager.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@ class HttpClientManager {
2323
HttpClientManager._internal();
2424

2525
http.Client createClient(
26-
String requestId,
27-
{bool noSSL = false}) {
26+
String requestId, {
27+
bool noSSL = false,
28+
}) {
2829
final client =
2930
(noSSL && !kIsWeb) ? createHttpClientWithNoSSL() : http.Client();
3031
_clients[requestId] = client;

0 commit comments

Comments
 (0)