GoogleClient constructor

GoogleClient(
  1. GoogleConfig config
)

Implementation

GoogleClient(this.config) {
  // Use unified Dio client factory with Google-specific strategy
  dio = DioClientFactory.create(
    strategy: GoogleDioStrategy(),
    config: config,
  );
}