InterceptorOverheadBenchmark constructor

InterceptorOverheadBenchmark({
  1. required String endpoint,
  2. int iterations = 30,
})

Implementation

InterceptorOverheadBenchmark({
  required this.endpoint,
  int iterations = 30,
}) : super(
  name: 'Interceptor Overhead Comparison',
  description: 'Compares http.Client with and without ObslyHttpInterceptor',
  iterations: iterations,
);