DeepLTranslationService constructor

DeepLTranslationService({
  1. required String url,
  2. required String apiKey,
  3. required Logger logger,
})

Implementation

DeepLTranslationService({
  required String url,
  required this.apiKey,
  required this.logger,
}) : _httpClient = HttpClient(
        baseUrl: url,
        logger: logger,
      );