1
0
forked from baron/baron-sso
Files
baron-sso/userfront/lib/core/services/http_client.dart
2026-02-12 10:39:47 +09:00

7 lines
254 B
Dart

import 'package:http/http.dart' as http;
import 'http_client_stub.dart' if (dart.library.html) 'http_client_web.dart';
http.Client createHttpClient({bool withCredentials = false}) {
return httpClientFactory.create(withCredentials: withCredentials);
}