Translator constructor

Translator({
  1. TranslatorLogger? logger,
  2. TranslatorCache? cache,
  3. bool translateBlocksInParallel = false,
  4. int maxParallelTranslations = 0,
})

Implementation

Translator(
    {this.logger,
    this.cache,
    this.translateBlocksInParallel = false,
    this.maxParallelTranslations = 0});