translateBulk abstract method

Future<List<Translation>> translateBulk(
  1. List<String> sources,
  2. LanguageCode sourceLanguage,
  3. List<LanguageCode> targets
)

Translates given texts to specified languages sources - list of texts which should be translated sourceLanguage - the language in which sources were given targets - list of languages to which sources should be translated

Implementation

Future<List<Translation>> translateBulk(
  List<String> sources,
  LanguageCode sourceLanguage,
  List<LanguageCode> targets,
);