HttpInterceptorBenchmark constructor
HttpInterceptorBenchmark({})
Implementation
HttpInterceptorBenchmark({
required String name,
required this.endpoint,
this.headers,
this.requestBody,
this.httpMethod = 'GET',
int iterations = 20,
}) : super(
name: name,
description: 'HTTP $httpMethod to $endpoint',
iterations: iterations,
);