getXmlFilesPath static method

String getXmlFilesPath(
  1. L10nConfig config,
  2. String locale
)

Returns dir path with xml translations files for locale.

Implementation

static String getXmlFilesPath(L10nConfig config, String locale) {
  final parentDirPath = config.xmlOutputDir;
  return path.join(parentDirPath, locale);
}