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(
          dio: Dio(options),
          interceptors: interceptors +
              <Interceptor>[
                CookieManager(
                  PersistCookieJar(
                    storage: FileStorage(cookiePath),
                  ),
                ),
              ],
        ),
        proxyUrl,
      );