ProxyAPIConfig constructor

const ProxyAPIConfig({
  1. required Uri apiUrl,
  2. required String targetUrlParameter,
})

Creates a new proxy API configuration.

Parameters:

  • apiUrl: The base URL of the proxy API
  • targetUrlParameter: The query parameter name for the target URL

Implementation

const ProxyAPIConfig({
  required this.apiUrl,
  required this.targetUrlParameter,
});