executor<E> method

DynCallHttpExecutor<E> executor<E>(
  1. HttpMethod method,
  2. String path, {
  3. Map<String, String>? parametersMap,
  4. String? queryString,
  5. List<String>? authorizationFields,
  6. E? errorResponse,
  7. int errorMaxRetries = 3,
})

Implementation

DynCallHttpExecutor<E> executor<E>(HttpMethod method, String path,
    {Map<String, String>? parametersMap,
    String? queryString,
    List<String>? authorizationFields,
    E? errorResponse,
    int errorMaxRetries = 3}) {
  return DynCallHttpExecutor(this, method, path,
      parametersMap: parametersMap,
      queryString: queryString,
      authorizationFields: authorizationFields,
      errorResponse: errorResponse,
      errorMaxRetries: 3);
}