install method

  1. @override
void install()
override

Wire the HTTP capture hook.

Implementation

@override
void install() {
  // V1 stub. Consumer code wires this adapter by calling
  // `dio.interceptors.add(_DioInterceptor())` where _DioInterceptor extends
  // Dio's Interceptor class and routes onRequest/onResponse/onError to
  // TelescopeStore.recordHttp(HttpRequestRecord(...)).
  //
  // V1.x will move the Dio-coupled glue into `fluttersdk_telescope_dio` so
  // the core telescope package stays HTTP-library-agnostic.
}