create static method
Implementation
static TestkitsService create(http.Client httpClient, String baseUrl, String apiKey) {
final client = ChopperClient(
client: httpClient,
baseUrl: baseUrl,
interceptors: [HttpRequestLoggingInterceptor(), HttpApiKeyInterceptor(apiKey)],
converter: const JsonSerializableConverter({
OrdersResponse: OrdersResponse.fromJson,
TestkitsResponse: TestkitsResponse.fromJson,
OrderResponse: OrderResponse.fromJson,
OrderData: OrderData.fromJson,
}));
return _$TestkitsService(client);
}