DynCallHttpExecutor<E> constructor
DynCallHttpExecutor<E> (
- HttpClient httpClient,
- HttpMethod method,
- String? path, {
- bool? fullPath,
- Map<
String, String> ? parametersMap, - Map<
String, String> ? parametersStatic, - Map<
String, ParameterProvider> ? parametersProviders, - String? queryString,
- bool? noQueryString,
- Credential? authorization,
- List<
String> ? authorizationFields, - Object? body,
- Object? bodyBuilder,
- String? bodyType,
- HTTPOutputValidator? outputValidator,
- HTTPOutputFilter? outputFilter,
- HTTPJSONOutputFilter? jsonOutputFilter,
- String? outputFilterPattern,
- HTTPOutputInterceptor<
E> ? outputInterceptor, - E? errorResponse,
- int errorMaxRetries = 3,
- OnHttpError? onHttpError,
Implementation
DynCallHttpExecutor(this.httpClient, this.method, this.path,
{this.fullPath,
this.parametersMap,
this.parametersStatic,
this.parametersProviders,
this.queryString,
this.noQueryString,
this.authorization,
this.authorizationFields,
this.body,
this.bodyBuilder,
this.bodyType,
this.outputValidator,
this.outputFilter,
this.jsonOutputFilter,
this.outputFilterPattern,
this.outputInterceptor,
this.errorResponse,
this.errorMaxRetries = 3,
this.onHttpError});