VrcApi constructor

VrcApi({
  1. required BaseOptions options,
  2. required List<Interceptor> interceptors,
  3. String? cookiePath,
  4. String? proxyUrl,
})

DO NOT INSTANTIATE

Implementation

VrcApi({
  required BaseOptions options,
  required List<Interceptor> interceptors,
  String? cookiePath,
  String? proxyUrl,
}) : super(
        VrchatDartGenerated(
          // Enable cookies
          dio: DioForBrowser(options)
            ..httpClientAdapter =
                (BrowserHttpClientAdapter()..withCredentials = true),
          interceptors: interceptors,
        ),
        proxyUrl,
      );