ARBTranslator constructor
ARBTranslator({
- required AbstractTranslationService translationSvc,
- required ARBContent arb,
- required LanguageCode sourceLanguage,
- required Logger logger,
translationSvc
- API service which will be used for translation of items
arb
- the file content which should be translated
sourceLanguage
- the language of arb
Implementation
ARBTranslator({
required this.translationSvc,
required this.arb,
required this.sourceLanguage,
required this.logger,
});